From 9fd1fe99e20642c78110ce62ec784122db68d039 Mon Sep 17 00:00:00 2001 From: eladcon Date: Wed, 20 Sep 2023 14:19:47 +0300 Subject: [PATCH] fix: unable to run dynamodb tests on non linux CI (#4225) ## Checklist - [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [ ] Description explains motivation and solution - [ ] Tests added (always) - [ ] Docs updated (only required for features) - [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing *By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*. --- examples/tests/sdk_tests/dynamodb-table/transaction.main.w | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/tests/sdk_tests/dynamodb-table/transaction.main.w b/examples/tests/sdk_tests/dynamodb-table/transaction.main.w index 8add7f8b988..78e024300f1 100644 --- a/examples/tests/sdk_tests/dynamodb-table/transaction.main.w +++ b/examples/tests/sdk_tests/dynamodb-table/transaction.main.w @@ -1,3 +1,9 @@ +/*\ +skipPlatforms: + - win32 + - darwin +\*/ + bring ex; let t1 = new ex.DynamodbTable(name: "test1", attributeDefinitions: { "k1": "S", "k2": "S" }, hashKey: "k1", rangeKey: "k2");