testgenius-ai / backend /tests /conftest.py
Muthukumarank's picture
🔧 Production-Ready Fix: All runtime errors resolved + deployment complete (#2)
709b8be
Raw
History Blame Contribute Delete
219 Bytes
"""
Pytest configuration — ensures app modules are importable.
"""
import sys
from pathlib import Path
# Add backend root to path so 'from app.services...' works
sys.path.insert(0, str(Path(__file__).parent.parent))