# CelerisLab/tests/conftest.py """Pytest configuration — ensures ``src/`` is importable from any test file.""" import sys import os _src = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")) if _src not in sys.path: sys.path.insert(0, _src)