1
0
mirror of https://github.com/home-assistant/core.git synced 2025-04-29 19:57:52 +00:00
core/tests/components/automation/conftest.py
Jan Bouwhuis ec98e22330
Add type hints for stub_blueprint_populate fixture ()
Add typehints for stub_blueprint_populate fixture
2023-05-26 08:13:13 +02:00

9 lines
252 B
Python

"""Conftest for automation 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."""