8 lines
233 B
Python
8 lines
233 B
Python
"""Conftest for trace tests."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True, name="stub_blueprint_populate")
|
|
def stub_blueprint_populate_autouse(stub_blueprint_populate):
|
|
"""Stub copying the blueprints to the config folder."""
|