Skip to content

Commit

Permalink
build: Remove -parallel flag from test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Jan 30, 2024
1 parent 4d10291 commit 5683795
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 @@ -197,7 +197,7 @@ serve: bin ## Compile the binary and run the server in development mode.
test: mocks .coverage.out ## Run the test suite.

.coverage.out:
gotestsum --format dots-v2 --junitfile .junit.xml -- ./... -parallel=$(shell nproc) -coverprofile=$@.all -covermode=atomic -coverpkg ./internal/...,./cmd/...,./. \
gotestsum --format dots-v2 --junitfile .junit.xml -- ./... -coverprofile=$@.all -covermode=atomic -coverpkg ./internal/...,./cmd/...,./. \
&& $(GREP_EXE) -v "_mock_test.go" $@.all > $@ \
&& go tool cover -func=$@

Expand Down

0 comments on commit 5683795

Please sign in to comment.