Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(endtoend): Don't run tests in testdata #1492

Merged
merged 1 commit into from Mar 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -52,7 +52,3 @@ jobs:
- name: build internal/endtoend
run: go build ./...
working-directory: internal/endtoend/testdata

- name: test internal/endtoend
run: go test ./...
working-directory: internal/endtoend/testdata
5 changes: 1 addition & 4 deletions Makefile
Expand Up @@ -12,10 +12,7 @@ test-examples:
build-endtoend:
cd ./internal/endtoend/testdata && go build ./...

test-endtoend:
cd ./internal/endtoend/testdata && go test ./...

test-ci: test-examples build-endtoend test-endtoend
test-ci: test-examples build-endtoend

regen: sqlc-dev
go run ./scripts/regenerate/
Expand Down