pyupgrade
Code Quality Pipeline / code-quality (pull_request) Failing after 43s
Test Python Package / test (pull_request) Failing after 11s

This commit is contained in:
Brian Bjarke Jensen
2025-09-15 00:54:01 +02:00
parent 5a72507775
commit 800d702d7a
+2 -2
View File
@@ -37,7 +37,7 @@ def configure_logging() -> None:
@pytest.fixture(scope="session") @pytest.fixture(scope="session")
def redis_container() -> Generator[str, None, None]: def redis_container() -> Generator[str]:
"""Set up a Redis container for testing and yield the Redis URI.""" """Set up a Redis container for testing and yield the Redis URI."""
# Start container # Start container
container = RedisContainer( container = RedisContainer(
@@ -56,7 +56,7 @@ def redis_container() -> Generator[str, None, None]:
@pytest.fixture(scope="session") @pytest.fixture(scope="session")
def minio_container() -> Generator[dict[str, str], None, None]: def minio_container() -> Generator[dict[str, str]]:
"""Set up a Minio container for testing and yield the Minio URI.""" """Set up a Minio container for testing and yield the Minio URI."""
# Start container # Start container
container = MinioContainer( container = MinioContainer(