Skip to content

Commit

Permalink
Fix the signing integration test cases by creating the S3 Buckets wit…
Browse files Browse the repository at this point in the history
…h versioning enabled (#3182)

* chore: bump version to 1.29.0

* fix the signed deploy use cases. The Created bucket should be versioned
  • Loading branch information
moelasmar committed Aug 18, 2021
1 parent b450b03 commit c65cb05
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration/package/package_integ_base.py
Expand Up @@ -64,6 +64,9 @@ def setUpClass(cls):
if not cls.pre_created_bucket:
cls.s3_bucket.create()
time.sleep(SLEEP)
bucket_versioning = s3.BucketVersioning(cls.bucket_name)
bucket_versioning.enable()
time.sleep(SLEEP)
if not cls.pre_created_ecr_repo:
ecr_result = cls.ecr.create_repository(repositoryName=cls.ecr_repo_name)
cls.ecr_repo_name = ecr_result.get("repository", {}).get("repositoryUri", None)
Expand Down

0 comments on commit c65cb05

Please sign in to comment.