Skip to content

Commit

Permalink
Revert "chore: add -race -failfast flags to the CI integration te…
Browse files Browse the repository at this point in the history
…sts (#4057)" (#4060)

This reverts commit ae8fc1f.

Co-authored-by: Danilo Pantani <[email protected]>
  • Loading branch information
julienrbrt and Pantani committed May 29, 2024
1 parent 2eb876a commit e9f92b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/test-coverage
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e -x

go test -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... $(go list github.com/ignite/cli/v29/ignite/...)
go test -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... $(go list github.com/ignite/cli/v29/ignite/...)

# append "||true" to grep so if no match the return code stays 0
excludelist="$(find ./ -type f -name '*.go' | xargs grep -l 'DONTCOVER' || true)"
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-integration
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

go test -race -failfast -v -timeout 120m github.com/ignite/cli/v29/integration/...
go test -v -timeout 120m github.com/ignite/cli/v29/integration/...
2 changes: 1 addition & 1 deletion scripts/test-unit
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

go test -race -v github.com/ignite/cli/v29/ignite/...
go test -v github.com/ignite/cli/v29/ignite/...

0 comments on commit e9f92b2

Please sign in to comment.