stocks / tests /conftest.py
Arrechenash's picture
Initial Commit
b2a37ab
raw
history blame contribute delete
347 Bytes
"""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))
@pytest.fixture(scope="session")
def base_url():
"""Base URL for the application"""
return "http://localhost:8080"