11 lines
292 B
Python
11 lines
292 B
Python
"""Global fixtures for MySmartBike BLE integration tests."""
|
|
import pytest
|
|
|
|
pytest_plugins = "pytest_homeassistant_custom_component"
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def auto_enable_custom_integrations(enable_custom_integrations):
|
|
"""Enable custom integrations for all tests."""
|
|
yield
|