Add default config if not there (#43321)
Co-authored-by: Bram Kragten <mail@bramkragten.nl>
This commit is contained in:
parent
0cf3736162
commit
b3be708db6
75 changed files with 432 additions and 21 deletions
14
tests/components/blueprint/conftest.py
Normal file
14
tests/components/blueprint/conftest.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
"""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
|
Loading…
Add table
Add a link
Reference in a new issue