Cinematch / tests /conftest.py
Amit-kr26's picture
feat: MLOps eval, A/B testing, DLQ, WebSocket, cold-start fallback
3fc8ccc
Raw
History Blame Contribute Delete
420 Bytes
# conftest.py — service packages imported via uv workspace deps (see tests/pyproject.toml)
import os
import sys
# Make spark-jobs scripts importable (bootstrap, streaming_job, etc.)
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "services", "spark-jobs"))
# Make API service scripts importable (main, deps, etc.)
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "services", "api"))