File size: 201 Bytes
eadbc29
 
 
 
 
 
 
1
2
3
4
5
6
7
8
# 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))