Skip to content

Commit

Permalink
fix(make): remove -failfast (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfalkowski authored Apr 27, 2024
1 parent 393b043 commit c179820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/make/go.mak
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ format:

# Run specs.
specs:
gotestsum --rerun-fails --packages="./..." --junitfile test/reports/specs.xml -- -vet=off -race -mod vendor -failfast -covermode=atomic -coverpkg=./... -coverprofile=test/reports/profile.cov ./...
gotestsum --rerun-fails --packages="./..." --junitfile test/reports/specs.xml -- -vet=off -race -mod vendor -covermode=atomic -coverpkg=./... -coverprofile=test/reports/profile.cov ./...

remove-generated-coverage:
cat test/reports/profile.cov | grep -Ev "${COV}" > test/reports/final.cov
Expand Down
2 changes: 1 addition & 1 deletion build/make/service.mak
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ features: build-test

# Run all the specs.
specs:
gotestsum --rerun-fails --packages="./..." --junitfile test/reports/specs.xml -- -vet=off -race -mod vendor -failfast -covermode=atomic -coverpkg=./... -coverprofile=test/reports/profile.cov ./...
gotestsum --rerun-fails --packages="./..." --junitfile test/reports/specs.xml -- -vet=off -race -mod vendor -covermode=atomic -coverpkg=./... -coverprofile=test/reports/profile.cov ./...

# Get go dep.
go-get:
Expand Down

0 comments on commit c179820

Please sign in to comment.