mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
15 lines
319 B
Python
15 lines
319 B
Python
"""Blueprints conftest."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
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
|