mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 19:46:11 +01:00
22 lines
347 B
Python
22 lines
347 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
TEST_ROOT = Path(__file__).parent.resolve()
|
|
PROJECT_ROOT = TEST_ROOT.parent
|
|
|
|
|
|
@pytest.fixture
|
|
def test_root() -> Path:
|
|
"""
|
|
Root directory of the tests
|
|
"""
|
|
return TEST_ROOT
|
|
|
|
|
|
@pytest.fixture
|
|
def project_root() -> Path:
|
|
"""
|
|
Root directory of the tests
|
|
"""
|
|
return PROJECT_ROOT
|