Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions homeassistant/components/hassio/issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
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,
Expand Down Expand Up @@ -87,7 +86,6 @@
"issue_system_disk_lifetime",
ISSUE_KEY_SYSTEM_FREE_SPACE,
ISSUE_KEY_ADDON_PWNED,
ISSUE_KEY_ADDON_DEPRECATED,
}

_LOGGER = logging.getLogger(__name__)
Expand Down
4 changes: 4 additions & 0 deletions tests/components/hassio/test_repairs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down