mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-25 09:07:50 +01:00
15 lines
330 B
Python
15 lines
330 B
Python
"""Blueprints conftest."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
|
|
@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
|