diff options
Diffstat (limited to 'tests/functional2/conftest.py')
-rw-r--r-- | tests/functional2/conftest.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/functional2/conftest.py b/tests/functional2/conftest.py new file mode 100644 index 000000000..406f97b75 --- /dev/null +++ b/tests/functional2/conftest.py @@ -0,0 +1,8 @@ +import pytest +from pathlib import Path +from .testlib import fixtures + + +@pytest.fixture +def nix(tmp_path: Path): + return fixtures.Nix(tmp_path) |