From 0ee1ab358a585f8c1195a9297644e982415115aa Mon Sep 17 00:00:00 2001 From: "daniel.radl" Date: Mon, 14 Jul 2025 19:01:15 +0200 Subject: [PATCH] Revert "Updated deprecated MinIO Env Variables" This reverts commit 76e66b5262c95b4ccbc7db17e68f8c60a6aeb3bc. --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index d6a2942b..55838c6b 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_ROOT_USER={access_key}", + f"MINIO_ACCESS_KEY={access_key}", "-e", - f"MINIO_ROOT_PASSWORD={secret_key}", + f"MINIO_SECRET_KEY={secret_key}", "--network", f"{compose.project_name}_default", "minio/minio",