Files
AISHub/tests/conftest.py
T
2026-05-04 08:13:38 +03:00

8 lines
166 B
Python

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