diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index b7aef4ba..f18b70ea 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -11,7 +11,7 @@ jobs: - name: Run docker build run: make docker-build test: - name: Run integration tests + name: Run unit tests env: GOPATH: /tmp/go strategy: diff --git a/Makefile b/Makefile index a8aea028..ce1ce535 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ test: | $(GINKGO) $(GOOSE) dropdb -h $(DATABASE_HOSTNAME) -p $(DATABASE_PORT) -U $(DATABASE_USER) --if-exists $(TEST_DB) createdb -h $(DATABASE_HOSTNAME) -p $(DATABASE_PORT) -U $(DATABASE_USER) $(TEST_DB) $(GOOSE) -dir db/migrations postgres "$(TEST_CONNECT_STRING)" up - $(GINKGO) -r --skipPackage=integration_tests,integration + $(GINKGO) -r --skipPackage=integration_test,integration .PHONY: integrationtest integrationtest: | $(GINKGO) $(GOOSE)