2020-10-23 14:28:21 +00:00
|
|
|
"""group conftest."""
|
2023-05-02 20:08:09 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
2021-03-02 08:02:04 +00:00
|
|
|
from tests.components.light.conftest import mock_light_profiles # noqa: F401
|
2023-05-02 20:08:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
async def setup_homeassistant(hass: HomeAssistant):
|
|
|
|
"""Set up the homeassistant integration."""
|
|
|
|
await async_setup_component(hass, "homeassistant", {})
|