mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 17:27:52 +00:00
9 lines
248 B
Python
9 lines
248 B
Python
"""Conftest for script tests."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True, name="stub_blueprint_populate")
|
|
def stub_blueprint_populate_autouse(stub_blueprint_populate: None) -> None:
|
|
"""Stub copying the blueprints to the config folder."""
|