hass-core/tests/components/blueprint/conftest.py

15 lines
333 B
Python
Raw Normal View History

"""Blueprints conftest."""
import pytest
from tests.async_mock import patch
@pytest.fixture(autouse=True)
def stub_blueprint_populate():
"""Stub copying the blueprint automations to the config folder."""
with patch(
"homeassistant.components.blueprint.models.DomainBlueprints.async_populate"
):
yield