Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
colorlog==6.10.1
pytest-homeassistant-custom-component==0.13.319
pytest-homeassistant-custom-component==0.13.326
pip>=26.0,<27
lxml>=4.9.1
beautifulsoup4>=4.12.2
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ async def coordinator(
scraper=scraper,
update_interval=timedelta(seconds=60),
)
return coordinator
yield coordinator
await coordinator.async_shutdown()


@pytest.fixture
Expand Down
2 changes: 2 additions & 0 deletions tests/test_coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ async def test_coordinator_with_zero_scan_interval(
assert scraper._data == "<html>Manual Update</html>"
assert coordinator.last_update_success

await coordinator.async_shutdown()


# ============================================================================
# Retry logic tests (scan_interval=0)
Expand Down
Loading