From f7357a60a6b2b4aa00923b7eced6b958d095dc48 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Tue, 28 Dec 2021 20:35:17 +0100 Subject: [PATCH] :wrench: ci: disable -race on tests Seems race conditions are triggered from the go-containerregistry underlying library. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 87949fc9..4e570486 100644 --- a/Makefile +++ b/Makefile @@ -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: