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 flightpull/124569/head
parent
5f275a6b9c
commit
2db362ab3d
|
@ -28,5 +28,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/august",
|
||||
"iot_class": "cloud_push",
|
||||
"loggers": ["pubnub", "yalexs"],
|
||||
"requirements": ["yalexs==8.1.4", "yalexs-ble==2.4.3"]
|
||||
"requirements": ["yalexs==8.3.3", "yalexs-ble==2.4.3"]
|
||||
}
|
||||
|
|
|
@ -2959,7 +2959,7 @@ yalesmartalarmclient==0.3.9
|
|||
yalexs-ble==2.4.3
|
||||
|
||||
# homeassistant.components.august
|
||||
yalexs==8.1.4
|
||||
yalexs==8.3.3
|
||||
|
||||
# homeassistant.components.yeelight
|
||||
yeelight==0.7.14
|
||||
|
|
|
@ -2336,7 +2336,7 @@ yalesmartalarmclient==0.3.9
|
|||
yalexs-ble==2.4.3
|
||||
|
||||
# homeassistant.components.august
|
||||
yalexs==8.1.4
|
||||
yalexs==8.3.3
|
||||
|
||||
# homeassistant.components.yeelight
|
||||
yeelight==0.7.14
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
from unittest.mock import patch
|
||||
|
||||
import pytest
|
||||
from yalexs.manager.ratelimit import _RateLimitChecker
|
||||
|
||||
|
||||
@pytest.fixture(name="mock_discovery", autouse=True)
|
||||
|
@ -12,3 +13,10 @@ def mock_discovery_fixture():
|
|||
"homeassistant.components.august.data.discovery_flow.async_create_flow"
|
||||
) as 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…
Reference in New Issue