Fix the upload-logs-s3 test playbook

This change fixes the following error:

  :stderr: error: externally-managed-environment

  × This environment is externally managed

Change-Id: I779b68aa6bfd5cc4a5831c727e820f49ed946a97
This commit is contained in:
Tristan Cacqueray 2024-08-30 15:09:39 +00:00 committed by Matthieu Huin
parent 55db214278
commit 0a9c50f1c5
2 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,9 @@ class Uploader():
CORSConfiguration=cors)
except Exception as e:
# MinIO (which we use in testing) doesn't implement this method
if 'MalformedXML' not in str(e):
minio_cors = "PutBucketCors operation: A header you provided " + \
"implies functionality that is not implemented"
if 'MalformedXML' not in str(e) and minio_cors not in str(e):
raise
def upload(self, file_list):

View File

@ -11,6 +11,7 @@
tasks:
- name: Install boto
pip:
extra_args: "--break-system-packages"
name:
- boto3
- botocore