Skip to content

Commit

Permalink
Bump yalexs to 8.3.3 (#124492)
Browse files Browse the repository at this point in the history
* Bump yalexs to 8.2.0

changelog: bdraco/yalexs@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
  • Loading branch information
bdraco authored and balloob committed Aug 25, 2024
1 parent 5f275a6 commit 2db362a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/august/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions tests/components/august/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest.mock import patch

import pytest
from yalexs.manager.ratelimit import _RateLimitChecker


@pytest.fixture(name="mock_discovery", autouse=True)
Expand All @@ -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

0 comments on commit 2db362a

Please sign in to comment.