Skip to content

Commit 170e1e8

Browse files
mdegat01bramkragten
authored andcommitted
Disable deprecated addon repair (#155739)
1 parent e1feba5 commit 170e1e8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

homeassistant/components/hassio/issues.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
EVENT_SUPPORTED_CHANGED,
4545
EXTRA_PLACEHOLDERS,
4646
ISSUE_KEY_ADDON_BOOT_FAIL,
47-
ISSUE_KEY_ADDON_DEPRECATED,
4847
ISSUE_KEY_ADDON_DETACHED_ADDON_MISSING,
4948
ISSUE_KEY_ADDON_DETACHED_ADDON_REMOVED,
5049
ISSUE_KEY_ADDON_PWNED,
@@ -87,7 +86,6 @@
8786
"issue_system_disk_lifetime",
8887
ISSUE_KEY_SYSTEM_FREE_SPACE,
8988
ISSUE_KEY_ADDON_PWNED,
90-
ISSUE_KEY_ADDON_DEPRECATED,
9189
}
9290

9391
_LOGGER = logging.getLogger(__name__)

tests/components/hassio/test_repairs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -996,10 +996,14 @@ async def test_supervisor_issue_addon_boot_fail(
996996
supervisor_client.resolution.apply_suggestion.assert_called_once_with(sugg_uuid)
997997

998998

999+
# Test disabled for now until repair can be re-enabled. First we need a repair
1000+
# specifically for the OTBR add-on to make migration to ZHA easy rather then
1001+
# having this repair encourage uninstall of that add-on and make migration hard.
9991002
@pytest.mark.parametrize(
10001003
"all_setup_requests", [{"include_addons": True}], indirect=True
10011004
)
10021005
@pytest.mark.usefixtures("all_setup_requests")
1006+
@pytest.mark.skip
10031007
async def test_supervisor_issue_deprecated_addon(
10041008
hass: HomeAssistant,
10051009
supervisor_client: AsyncMock,

0 commit comments

Comments
 (0)