1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-12 00:57:36 +01:00

Disable rflink tests broken by Python 3.14.3 asyncio changes (#169074)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ariel Ebersberger
2026-04-24 20:06:23 +02:00
committed by GitHub
parent 6fe1862d15
commit 446d89aee2
2 changed files with 6 additions and 0 deletions
@@ -87,6 +87,9 @@ async def test_default_setup(
assert hass.states.get("binary_sensor.test").state == STATE_OFF
@pytest.mark.xfail(
reason="Flaky due to Python 3.14.3 asyncio changes - see home-assistant/core#162263"
)
async def test_entity_availability(
hass: HomeAssistant, monkeypatch: pytest.MonkeyPatch
) -> None:
+3
View File
@@ -131,6 +131,9 @@ async def test_disable_automatic_add(
assert not hass.states.get("sensor.test2")
@pytest.mark.xfail(
reason="Flaky due to Python 3.14.3 asyncio changes - see home-assistant/core#162263"
)
async def test_entity_availability(
hass: HomeAssistant, monkeypatch: pytest.MonkeyPatch
) -> None: