core/tests/components/blueprint/conftest.py

15 lines
319 B
Python
Raw Normal View History

"""Blueprints conftest."""
2021-01-01 21:31:56 +00:00
from unittest.mock import patch
2021-01-01 21:31:56 +00:00
import pytest
@pytest.fixture(autouse=True)
def stub_blueprint_populate():
"""Stub copying the blueprints to the config folder."""
with patch(
"homeassistant.components.blueprint.models.DomainBlueprints.async_populate"
):
yield