diff --git a/tests/integration/sync/test_sync_command.py b/tests/integration/sync/test_sync_command.py index 54d4f6e2c1..a659617212 100644 --- a/tests/integration/sync/test_sync_command.py +++ b/tests/integration/sync/test_sync_command.py @@ -6,6 +6,7 @@ import shutil import tempfile import time +import uuid from pathlib import Path from unittest import skipIf @@ -40,7 +41,7 @@ @skipIf(SKIP_SYNC_TESTS, "Skip sync tests in CI/CD only") -class TestSync(PackageIntegBase, BuildIntegBase, SyncIntegBase): +class TestSync(BuildIntegBase, PackageIntegBase, SyncIntegBase): @classmethod def setUpClass(cls): PackageIntegBase.setUpClass() @@ -56,6 +57,7 @@ def setUp(self): self.sns_arn = os.environ.get("AWS_SNS") self.stacks = [] time.sleep(CFN_SLEEP) + self.s3_prefix = uuid.uuid4().hex super().setUp() def tearDown(self):