"""Pytest configuration for the paper-dynasty-database test suite. Provides dummy PostgreSQL credentials so PooledPostgresqlDatabase can be instantiated during test collection without a real database connection. Each test module is responsible for binding models to its own test database. """ import os # Provide dummy credentials so PooledPostgresqlDatabase can be instantiated # without raising a configuration error (it will not actually be used). os.environ.setdefault("POSTGRES_PASSWORD", "test-dummy")