* Switch out aiohttp-isal for aiohttp-fast-zlib to make isal optional aiohttp-isal does not work on core installs where the system has 32bit userland and a 64bit kernel because we have no way to detect this configuration or handle it. fixes #116681 * Update homeassistant/components/isal/manifest.json * Update homeassistant/components/isal/manifest.json * hassfest * isal * fixes * Apply suggestions from code review * make sure isal is updated before http * fix tests * late import
10 lines
345 B
Python
10 lines
345 B
Python
"""Test the Intelligent Storage Acceleration setup."""
|
|
|
|
from homeassistant.components.isal import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
async def test_setup(hass: HomeAssistant) -> None:
|
|
"""Ensure we can setup."""
|
|
assert await async_setup_component(hass, DOMAIN, {})
|