mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05:00
Bump yalexs to 9.2.10 (#176929)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
dadfe98258
commit
457ba8768f
@@ -30,5 +30,5 @@
|
||||
"integration_type": "hub",
|
||||
"iot_class": "cloud_push",
|
||||
"loggers": ["pubnub", "yalexs"],
|
||||
"requirements": ["yalexs==9.2.7", "yalexs-ble==3.3.1"]
|
||||
"requirements": ["yalexs==9.2.10", "yalexs-ble==3.3.1"]
|
||||
}
|
||||
|
||||
@@ -14,5 +14,5 @@
|
||||
"integration_type": "hub",
|
||||
"iot_class": "cloud_push",
|
||||
"loggers": ["socketio", "engineio", "yalexs"],
|
||||
"requirements": ["yalexs==9.2.7", "yalexs-ble==3.3.1"]
|
||||
"requirements": ["yalexs==9.2.10", "yalexs-ble==3.3.1"]
|
||||
}
|
||||
|
||||
Generated
+1
-1
@@ -3434,7 +3434,7 @@ yalexs-ble==3.3.1
|
||||
|
||||
# homeassistant.components.august
|
||||
# homeassistant.components.yale
|
||||
yalexs==9.2.7
|
||||
yalexs==9.2.10
|
||||
|
||||
# homeassistant.components.yeelight
|
||||
yeelight==0.7.16
|
||||
|
||||
@@ -39,33 +39,6 @@ async def test_create_doorbell(
|
||||
assert body == "image"
|
||||
|
||||
|
||||
async def test_doorbell_refresh_content_token_recover(
|
||||
hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator
|
||||
) -> None:
|
||||
"""Test camera image content token expired."""
|
||||
doorbell_two = await _mock_doorbell_from_fixture(hass, "get_doorbell.json")
|
||||
with patch.object(
|
||||
doorbell_two,
|
||||
"async_get_doorbell_image",
|
||||
create=False,
|
||||
side_effect=[ContentTokenExpired, "image"],
|
||||
):
|
||||
await _create_august_with_devices(
|
||||
hass,
|
||||
[doorbell_two],
|
||||
brand=Brand.YALE_HOME,
|
||||
)
|
||||
url = hass.states.get(
|
||||
"camera.k98gidt45gul_name_k98gidt45gul_name_camera"
|
||||
).attributes["entity_picture"]
|
||||
|
||||
client = await hass_client_no_auth()
|
||||
resp = await client.get(url)
|
||||
assert resp.status == HTTPStatus.OK
|
||||
body = await resp.text()
|
||||
assert body == "image"
|
||||
|
||||
|
||||
async def test_doorbell_refresh_content_token_fail(
|
||||
hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator
|
||||
) -> None:
|
||||
@@ -80,7 +53,7 @@ async def test_doorbell_refresh_content_token_fail(
|
||||
await _create_august_with_devices(
|
||||
hass,
|
||||
[doorbell_two],
|
||||
brand=Brand.YALE_HOME,
|
||||
brand=Brand.YALE_AUGUST,
|
||||
)
|
||||
url = hass.states.get(
|
||||
"camera.k98gidt45gul_name_k98gidt45gul_name_camera"
|
||||
|
||||
@@ -261,7 +261,7 @@ async def test_brand_migration_issue(hass: HomeAssistant) -> None:
|
||||
"""Test removing the brand migration issue."""
|
||||
august_operative_lock = await _mock_operative_august_lock_detail(hass)
|
||||
config_entry, _ = await _create_august_with_devices(
|
||||
hass, [august_operative_lock], brand=Brand.YALE_HOME
|
||||
hass, [august_operative_lock], brand=Brand.YALE_AUGUST
|
||||
)
|
||||
|
||||
assert config_entry.state is ConfigEntryState.LOADED
|
||||
|
||||
Reference in New Issue
Block a user