Skip to content

Commit

Permalink
fix: unable to run dynamodb tests on non linux CI (#4225)
Browse files Browse the repository at this point in the history
## 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)*.
  • Loading branch information
eladcon authored Sep 20, 2023
1 parent 6834eb2 commit 9fd1fe9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/tests/sdk_tests/dynamodb-table/transaction.main.w
Original file line number Diff line number Diff line change
@@ -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");
Expand Down

0 comments on commit 9fd1fe9

Please sign in to comment.