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: 2 additions & 2 deletions tests/integration/sync/test_sync_adl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from samcli.lib.utils.resources import AWS_LAMBDA_FUNCTION
from tests.integration.sync.test_sync_code import TestSyncCodeBase, SKIP_SYNC_TESTS, TestSyncCode
from tests.integration.sync.test_sync_watch import TestSyncWatchBase
from tests.testing_utils import run_command_with_input, read_until_string
from tests.testing_utils import run_command_with_input, read_until_string, IS_WINDOWS


@skipIf(SKIP_SYNC_TESTS, "Skip sync tests in CI/CD only")
Expand Down Expand Up @@ -105,7 +105,7 @@ def test_sync_code_function_without_dependencies(self):
self.assertIn("extra_message", lambda_response)


@skipIf(SKIP_SYNC_TESTS, "Skip sync tests in CI/CD only")
@skipIf(SKIP_SYNC_TESTS or IS_WINDOWS, "Skip sync tests in CI/CD only")
class TestSyncAdlWithWatchStartWithNoDependencies(TestSyncWatchBase):
@classmethod
def setUpClass(cls):
Expand Down