Files
AutoMetabuilder/backend/tests/conftest.py
2026-01-10 22:23:28 +00:00

9 lines
286 B
Python

"""Pytest configuration for AutoMetabuilder tests."""
import sys
from pathlib import Path
# Add backend directory to Python path so autometabuilder can be imported
backend_dir = Path(__file__).parent.parent
if str(backend_dir) not in sys.path:
sys.path.insert(0, str(backend_dir))