Spaces:
Running
Running
| """Pytest configuration for E2E tests""" | |
| import sys | |
| from pathlib import Path | |
| import pytest | |
| # Add project root to Python path for imports | |
| project_root = Path(__file__).parent.parent | |
| sys.path.insert(0, str(project_root)) | |
| def base_url(): | |
| """Base URL for the application""" | |
| return "http://localhost:8080" | |