"""Shared test configuration constants.""" from python_repositories.config import MinioConfig, PostgresConfig, RedisConfig TEST_REDIS_CONFIG = RedisConfig(uri="redis://localhost:6379") TEST_MINIO_CONFIG = MinioConfig( endpoint="localhost:9000", access_key="minioadmin", secret_key="minioadmin", bucket="test-bucket", secure=False, ) TEST_POSTGRES_CONFIG = PostgresConfig( uri="postgresql://localhost/mydb", table="test_items", primary_key="id", )