Update aioairzone to v0.8.1 (#122481)

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
Álvaro Fernández Rojas 2024-07-23 21:22:42 +02:00 committed by GitHub
parent e00f159ebe
commit 2730713b39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -11,5 +11,5 @@
"documentation": "https://www.home-assistant.io/integrations/airzone",
"iot_class": "local_polling",
"loggers": ["aioairzone"],
"requirements": ["aioairzone==0.8.0"]
"requirements": ["aioairzone==0.8.1"]
}

View file

@ -179,7 +179,7 @@ aioairq==0.3.2
aioairzone-cloud==0.5.4
# homeassistant.components.airzone
aioairzone==0.8.0
aioairzone==0.8.1
# homeassistant.components.ambient_network
# homeassistant.components.ambient_station

View file

@ -164,7 +164,7 @@ aioairq==0.3.2
aioairzone-cloud==0.5.4
# homeassistant.components.airzone
aioairzone==0.8.0
aioairzone==0.8.1
# homeassistant.components.ambient_network
# homeassistant.components.ambient_station

View file

@ -248,7 +248,7 @@ async def test_airzone_create_climates(hass: HomeAssistant) -> None:
),
):
async_fire_time_changed(hass, utcnow() + SCAN_INTERVAL)
await hass.async_block_till_done()
await hass.async_block_till_done(wait_background_tasks=True)
state = hass.states.get("climate.salon")
assert state.attributes.get(ATTR_MAX_TEMP) == 25

View file

@ -113,7 +113,7 @@ async def test_airzone_sensors_availability(hass: HomeAssistant) -> None:
),
):
async_fire_time_changed(hass, utcnow() + SCAN_INTERVAL)
await hass.async_block_till_done()
await hass.async_block_till_done(wait_background_tasks=True)
state = hass.states.get("sensor.dorm_ppal_temperature")
assert state.state == STATE_UNAVAILABLE