Add repairs to hassio manifest (#115486)

* Add repairs to hassio manifest

* Remove unnecessary fixture
This commit is contained in:
Mike Degatano 2024-04-17 09:51:29 -04:00 committed by GitHub
parent bd2efffb4a
commit f1ebe9d20a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 8 deletions

View File

@ -2,7 +2,7 @@
"domain": "hassio",
"name": "Home Assistant Supervisor",
"codeowners": ["@home-assistant/supervisor"],
"dependencies": ["http"],
"dependencies": ["http", "repairs"],
"documentation": "https://www.home-assistant.io/integrations/hassio",
"iot_class": "local_polling",
"quality_scale": "internal"

View File

@ -6,7 +6,6 @@ from unittest.mock import patch
import pytest
from homeassistant.components.repairs import DOMAIN as REPAIRS_DOMAIN
from homeassistant.core import HomeAssistant
import homeassistant.helpers.issue_registry as ir
from homeassistant.setup import async_setup_component
@ -18,12 +17,6 @@ from tests.test_util.aiohttp import AiohttpClientMocker
from tests.typing import ClientSessionGenerator
@pytest.fixture(autouse=True)
async def setup_repairs(hass: HomeAssistant):
"""Set up the repairs integration."""
assert await async_setup_component(hass, REPAIRS_DOMAIN, {REPAIRS_DOMAIN: {}})
@pytest.fixture(autouse=True)
async def fixture_supervisor_environ():
"""Mock os environ for supervisor."""