""" Pytest configuration for ROA2WEB tests. This file ensures proper Python path setup for imports. """ 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))