diff --git a/tests/components/rflink/test_binary_sensor.py b/tests/components/rflink/test_binary_sensor.py index fd113bceaa0f4..6b8ce286fd9a8 100644 --- a/tests/components/rflink/test_binary_sensor.py +++ b/tests/components/rflink/test_binary_sensor.py @@ -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: diff --git a/tests/components/rflink/test_sensor.py b/tests/components/rflink/test_sensor.py index 2f0164a55f9a1..96204043298ff 100644 --- a/tests/components/rflink/test_sensor.py +++ b/tests/components/rflink/test_sensor.py @@ -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: