From 92fbf468f2ef477bd88448bc6f52dca3f4e64d40 Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Mon, 3 Nov 2025 13:08:30 -0500 Subject: [PATCH] Disable deprecated addon repair (#155739) --- homeassistant/components/hassio/issues.py | 2 -- tests/components/hassio/test_repairs.py | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/hassio/issues.py b/homeassistant/components/hassio/issues.py index fe842f8ddc4..603a5fe8fcd 100644 --- a/homeassistant/components/hassio/issues.py +++ b/homeassistant/components/hassio/issues.py @@ -44,7 +44,6 @@ from .const import ( EVENT_SUPPORTED_CHANGED, EXTRA_PLACEHOLDERS, ISSUE_KEY_ADDON_BOOT_FAIL, - ISSUE_KEY_ADDON_DEPRECATED, ISSUE_KEY_ADDON_DETACHED_ADDON_MISSING, ISSUE_KEY_ADDON_DETACHED_ADDON_REMOVED, ISSUE_KEY_ADDON_PWNED, @@ -87,7 +86,6 @@ ISSUE_KEYS_FOR_REPAIRS = { "issue_system_disk_lifetime", ISSUE_KEY_SYSTEM_FREE_SPACE, ISSUE_KEY_ADDON_PWNED, - ISSUE_KEY_ADDON_DEPRECATED, } _LOGGER = logging.getLogger(__name__) diff --git a/tests/components/hassio/test_repairs.py b/tests/components/hassio/test_repairs.py index 8f15959234a..25fddb94918 100644 --- a/tests/components/hassio/test_repairs.py +++ b/tests/components/hassio/test_repairs.py @@ -996,10 +996,14 @@ async def test_supervisor_issue_addon_boot_fail( supervisor_client.resolution.apply_suggestion.assert_called_once_with(sugg_uuid) +# Test disabled for now until repair can be re-enabled. First we need a repair +# specifically for the OTBR add-on to make migration to ZHA easy rather then +# having this repair encourage uninstall of that add-on and make migration hard. @pytest.mark.parametrize( "all_setup_requests", [{"include_addons": True}], indirect=True ) @pytest.mark.usefixtures("all_setup_requests") +@pytest.mark.skip async def test_supervisor_issue_deprecated_addon( hass: HomeAssistant, supervisor_client: AsyncMock,