"""Root conftest for VoIdea tests.""" import os import sys from pathlib import Path # Ensure app is importable sys.path.insert(0, str(Path(__file__).parent.parent)) # Set test environment os.environ.setdefault("PROJECT_ENV", "test") os.environ.setdefault("PROJECT_VERSION", "1.0.0") os.environ.setdefault("JWT_SECRET_KEY", "test-secret-key-not-for-production")