From 76e66b5262c95b4ccbc7db17e68f8c60a6aeb3bc Mon Sep 17 00:00:00 2001 From: "daniel.radl" Date: Mon, 14 Jul 2025 17:35:26 +0200 Subject: [PATCH] Updated deprecated MinIO Env Variables --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 55838c6b..d6a2942b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -139,9 +139,9 @@ def s3_service(python_path: str, compose: Compose): "minio", "-d", "-e", - f"MINIO_ACCESS_KEY={access_key}", + f"MINIO_ROOT_USER={access_key}", "-e", - f"MINIO_SECRET_KEY={secret_key}", + f"MINIO_ROOT_PASSWORD={secret_key}", "--network", f"{compose.project_name}_default", "minio/minio",