Files

11 lines
239 B
Python
Raw Permalink Normal View History

2026-04-12 12:34:45 +05:30
import sys
from pathlib import Path
import pytest
2026-04-12 12:34:45 +05:30
sys.path.insert(0, str(Path(__file__).parent.parent / "src"))
def pytest_configure(config: pytest.Config) -> None:
config.addinivalue_line("markers", "unit: marks fast unit tests")