CloudFinOpsEnv / conftest.py
jacklachan's picture
Upload folder using huggingface_hub
daace4d verified
Raw
History Blame Contribute Delete
261 Bytes
"""
Pytest configuration — adds project root to sys.path so all tests
can import models, engine, and data without sys.path hacking.
"""
import sys
import os
# Add project root to path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))