Skip to content

Commit

Permalink
fix unit test filter
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanzele committed Jun 22, 2023
1 parent 9f6acce commit ec1aebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ tests: gotestsum
docker run -d --name=postgres $(DOCKER_NET) -p 5432:5432 -e POSTGRES_PASSWORD=psw postgres:14.2
sleep 3
function tearDown { docker rm -f redis postgres; }; trap tearDown EXIT
$(GOTESTSUM) --format short-verbose --junitfile test-reports/unit-tests.xml --jsonfile test-reports/unit-tests.json -- -coverprofile=test-reports/coverage.out -covermode=atomic ./...
$(GOTESTSUM) --format short-verbose --junitfile test-reports/unit-tests.xml --jsonfile test-reports/unit-tests.json -- -coverprofile=test-reports/coverage.out -covermode=atomic ./cmd/... ./pkg/... ./internal/...

.ONESHELL:
lint-fix:
Expand Down

0 comments on commit ec1aebd

Please sign in to comment.