Spaces:
No application file
No application file
File size: 215 Bytes
bce4c09 | 1 2 3 4 5 6 7 8 9 10 | """Configure pytest to add project root to path"""
import os
import sys
from pathlib import Path
# Add project root to Python path
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root))
|