legawa / tests /__init__.py
pebaryan
Harden citation pipeline + add comprehensive test suite
b4a776c
Raw
History Blame Contribute Delete
185 Bytes
from __future__ import annotations
import sys
from pathlib import Path
SRC = Path(__file__).resolve().parents[1] / "src"
if str(SRC) not in sys.path:
sys.path.insert(0, str(SRC))