13 lines
325 B
Python
13 lines
325 B
Python
"""Test fixtures for SolarEdge Optimizers."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
pytest_plugins = "pytest_homeassistant_custom_component"
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def auto_enable_custom_integrations(enable_custom_integrations: None) -> None:
|
|
"""Enable loading custom integrations in all tests."""
|