From bea603e292e65d22d136bc465934b747d1fd6a56 Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Sat, 2 Mar 2024 23:09:18 +0000 Subject: [PATCH] ci: no cover --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f6f6df74f..6b6bc448d 100755 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ test: deps install @echo "mode: count" > coverage.txt @for d in $$(go list ./... | grep -v vendor | grep -v examples); \ do \ - CGO_ENABLED=0 go test -count=1 -v -coverprofile=profile.out -covermode=count $$d; \ + CGO_ENABLED=0 go test -count=1 -v $$d; \ if [ $$? != 0 ]; then \ export FAILURE=1; \ fi; \