Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/integration/sync/test_sync_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import shutil
import tempfile
import time
import uuid
from pathlib import Path
from unittest import skipIf

Expand Down Expand Up @@ -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()
Expand All @@ -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):
Expand Down