QuantumLearning/tests/conftest.py

10 lines
201 B
Python
Raw Permalink Normal View History

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