From 446d89aee2bc3de6846e334d4785ec1889b4dff1 Mon Sep 17 00:00:00 2001 From: Ariel Ebersberger <31776703+justanotherariel@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:06:23 +0200 Subject: [PATCH] Disable rflink tests broken by Python 3.14.3 asyncio changes (#169074) Co-authored-by: Claude Opus 4.6 (1M context) --- tests/components/rflink/test_binary_sensor.py | 3 +++ tests/components/rflink/test_sensor.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/components/rflink/test_binary_sensor.py b/tests/components/rflink/test_binary_sensor.py index fd113bceaa0f..6b8ce286fd9a 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 2f0164a55f9a..96204043298f 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: