chrysopedia/conftest.py
jlightner bd0dbb4df9 feat: Added body_sections_format column, technique_page_videos associat…
- "alembic/versions/012_multi_source_format.py"
- "backend/models.py"
- "backend/schemas.py"

GSD-Task: S03/T01
2026-04-03 01:16:31 +00:00

7 lines
228 B
Python

"""Root conftest: ensure backend/ is on sys.path for symlinked test discovery."""
import os
import sys
_backend = os.path.join(os.path.dirname(__file__), "backend")
if _backend not in sys.path:
sys.path.insert(0, _backend)