Files
face-lock/tests/conftest.py
Luna f1072cb7b0
All checks were successful
python / test (push) Successful in 10s
Fix pytest import path
2026-04-13 20:38:52 +02:00

7 lines
144 B
Python

from pathlib import Path
import sys
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))