"""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))