mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Bump yalexs to 8.3.3 (#124492)
* Bump yalexs to 8.2.0 changelog: https://github.com/bdraco/yalexs/compare/v8.1.4...v8.2.0 * bump to 8.3.1 * bump * one more bump to ensure we do not hit the ratelimit/shutdown cleanly * empty commit to restart ci since close/open did not work in flight
This commit is contained in:
parent
61cee043e6
commit
af2fec89d8
@ -28,5 +28,5 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/august",
|
"documentation": "https://www.home-assistant.io/integrations/august",
|
||||||
"iot_class": "cloud_push",
|
"iot_class": "cloud_push",
|
||||||
"loggers": ["pubnub", "yalexs"],
|
"loggers": ["pubnub", "yalexs"],
|
||||||
"requirements": ["yalexs==8.1.4", "yalexs-ble==2.4.3"]
|
"requirements": ["yalexs==8.3.3", "yalexs-ble==2.4.3"]
|
||||||
}
|
}
|
||||||
|
@ -2968,7 +2968,7 @@ yalesmartalarmclient==0.4.0
|
|||||||
yalexs-ble==2.4.3
|
yalexs-ble==2.4.3
|
||||||
|
|
||||||
# homeassistant.components.august
|
# homeassistant.components.august
|
||||||
yalexs==8.1.4
|
yalexs==8.3.3
|
||||||
|
|
||||||
# homeassistant.components.yeelight
|
# homeassistant.components.yeelight
|
||||||
yeelight==0.7.14
|
yeelight==0.7.14
|
||||||
|
@ -2348,7 +2348,7 @@ yalesmartalarmclient==0.4.0
|
|||||||
yalexs-ble==2.4.3
|
yalexs-ble==2.4.3
|
||||||
|
|
||||||
# homeassistant.components.august
|
# homeassistant.components.august
|
||||||
yalexs==8.1.4
|
yalexs==8.3.3
|
||||||
|
|
||||||
# homeassistant.components.yeelight
|
# homeassistant.components.yeelight
|
||||||
yeelight==0.7.14
|
yeelight==0.7.14
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from yalexs.manager.ratelimit import _RateLimitChecker
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(name="mock_discovery", autouse=True)
|
@pytest.fixture(name="mock_discovery", autouse=True)
|
||||||
@ -12,3 +13,10 @@ def mock_discovery_fixture():
|
|||||||
"homeassistant.components.august.data.discovery_flow.async_create_flow"
|
"homeassistant.components.august.data.discovery_flow.async_create_flow"
|
||||||
) as mock_discovery:
|
) as mock_discovery:
|
||||||
yield mock_discovery
|
yield mock_discovery
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(name="disable_ratelimit_checks", autouse=True)
|
||||||
|
def disable_ratelimit_checks_fixture():
|
||||||
|
"""Disable rate limit checks."""
|
||||||
|
with patch.object(_RateLimitChecker, "register_wakeup"):
|
||||||
|
yield
|
||||||
|
Loading…
x
Reference in New Issue
Block a user