From fb496e16123721834240067517c085bbf969c6d4 Mon Sep 17 00:00:00 2001 From: Ariel Ebersberger Date: Fri, 24 Apr 2026 16:39:55 +0200 Subject: [PATCH] Disable flaky rflink tests due to Python 3.14.3 asyncio changes 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 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: