🔧 ci: disable -race on tests

Seems race conditions are triggered from the go-containerregistry
underlying library.
This commit is contained in:
Ettore Di Giacinto 2021-12-28 20:35:17 +01:00
parent 57eedf8e7e
commit f7357a60a6

View File

@ -19,7 +19,7 @@ fmt:
test:
GO111MODULE=off go get github.com/onsi/ginkgo/ginkgo
GO111MODULE=off go get github.com/onsi/gomega/...
ginkgo -race -r -flakeAttempts 3 ./...
ginkgo -r -flakeAttempts 3 ./...
.PHONY: test-integration
test-integration:
@ -27,7 +27,7 @@ test-integration:
.PHONY: coverage
coverage:
go test ./... -race -coverprofile=coverage.txt -covermode=atomic
go test ./... -coverprofile=coverage.txt -covermode=atomic
.PHONY: test-coverage
test-coverage: