""" Shared pytest fixtures. Integration tests that need a real database should use a separate PostgreSQL instance (e.g. a Docker service spun up by the CI job) and set DATABASE_URL in the environment before importing the app. For unit tests of pure functions no database is needed at all. """ import os import pytest @pytest.fixture(autouse=True) def _isolate_env(monkeypatch): """Prevent tests from accidentally reading production env vars.""" monkeypatch.setenv("DATABASE_URL", "postgresql+asyncpg://test:test@localhost/test") monkeypatch.setenv("SECRET_KEY", "test-secret-key") monkeypatch.setenv("OLLAMA_URL", "http://localhost:11434")