You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
371 B
Python
25 lines
371 B
Python
#!/usr/bin/env python3
|
|
|
|
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
|