hackathon_code4change / conftest.py
RoyAalekh's picture
Submission ready
eadbc29
raw
history blame contribute delete
201 Bytes
# pytest configuration to add project root to Python path
import sys
from pathlib import Path
# Add project root to sys.path
project_root = Path(__file__).parent
sys.path.insert(0, str(project_root))