15 lines
263 B
Python
15 lines
263 B
Python
import pytest
|
|
from pathlib import Path
|
|
from .testlib import fixtures
|
|
|
|
|
|
@pytest.fixture
|
|
def nix(tmp_path: Path):
|
|
return fixtures.Nix(tmp_path)
|
|
|
|
|
|
pytest_plugins = (
|
|
"functional2.testlib.fixtures.file_helper",
|
|
"functional2.testlib.fixtures.formatter",
|
|
)
|