Skip to content

Commit

Permalink
feat(make): remove retrying as we want to track flakyness (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfalkowski authored May 6, 2024
1 parent 253f8fe commit f3f2ec4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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 -covermode=atomic -coverpkg=./... -coverprofile=test/reports/profile.cov ./...
gotestsum --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 @@ -107,7 +107,7 @@ features: build-test

# Run all the specs.
specs:
gotestsum --rerun-fails --packages="./..." --junitfile test/reports/specs.xml -- -vet=off -race -mod vendor -covermode=atomic -coverpkg=./... -coverprofile=test/reports/profile.cov ./...
gotestsum --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
4 changes: 2 additions & 2 deletions quality/ruby/cucumber
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readonly feature="$1"
readonly tags="$2"

if [ -n "$tags" ]; then
bundle exec cucumber --profile report --fail-fast $feature --tags "$tags"
bundle exec cucumber --profile report $feature --tags "$tags"
else
bundle exec cucumber --profile report --fail-fast $feature
bundle exec cucumber --profile report $feature
fi

0 comments on commit f3f2ec4

Please sign in to comment.