testgenius-ai / backend /tests /conftest.py
muthuk2's picture
fix: conftest.py for proper pytest path discovery
2be0211 verified
Raw
History Blame
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))