Skip to content

Commit

Permalink
Enable Go tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Jan 26, 2021
1 parent 73016dc commit 41957f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ jobs:
- nodejs
- python
- dotnet
# - go // temporarily removed
- go
nodeversion:
- 13.x
pythonversion:
Expand Down
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,16 +99,14 @@ test_fast::
cd tests/sdk/nodejs && $(GO_TEST_FAST) ./...
cd tests/sdk/python && $(GO_TEST_FAST) ./...
cd tests/sdk/dotnet && $(GO_TEST_FAST) ./...
# TODO: re-enable Go SDK tests once CI OOM errors are fixed.
#cd tests/sdk/go && $(GO_TEST_FAST) ./...
cd tests/sdk/go && $(GO_TEST_FAST) ./...

test_all::
cd provider/pkg && $(GO_TEST) ./...
cd tests/sdk/nodejs && $(GO_TEST) ./...
cd tests/sdk/python && $(GO_TEST) ./...
cd tests/sdk/dotnet && $(GO_TEST) ./...
# TODO: re-enable Go SDK tests once CI OOM errors are fixed.
#cd tests/sdk/go && $(GO_TEST) ./...
cd tests/sdk/go && $(GO_TEST) ./...

generate_schema:: schema

Expand Down

0 comments on commit 41957f1

Please sign in to comment.