mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-25 14:25:05 +00:00
9 lines
286 B
Python
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))
|