From 7c4b658bb48cfa1c89ad884ee6cc4c3104da08dd Mon Sep 17 00:00:00 2001 From: marijn Date: Fri, 23 Aug 2024 13:20:47 +0200 Subject: [PATCH] Fix CI build --- tests/test_upload_files_to_vine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_upload_files_to_vine.py b/tests/test_upload_files_to_vine.py index 854bf98..8b7042e 100644 --- a/tests/test_upload_files_to_vine.py +++ b/tests/test_upload_files_to_vine.py @@ -8,7 +8,7 @@ # Since we do not specify a minio cli options in our tests, # floridayvine will fallback to the environment variables, # so we can use those for our assertions too. -minio_endpoint = os.getenv("MINIO_ENDPOINT") +minio_endpoint = os.getenv("MINIO_ENDPOINT", "play.min.io") minio_access_key = os.getenv("MINIO_ACCESS_KEY") minio_secret_key = os.getenv("MINIO_SECRET_KEY") minio_client = Minio(minio_endpoint, minio_access_key, minio_secret_key, secure=False)