mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-05-03 02:04:56 +00:00
23e59e9990
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
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))
|