From 63e1b244838929c2888f994bb5ffbd162a0efdbf Mon Sep 17 00:00:00 2001 From: Yadong Ding Date: Wed, 13 Dec 2023 13:43:47 +0800 Subject: [PATCH] chore: remove go test cover In golang smoke test, go test don't need coverage analysis and create coverage profile. Signed-off-by: Yadong Ding --- smoke/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smoke/Makefile b/smoke/Makefile index 5714761f28a..29e5635eeaa 100644 --- a/smoke/Makefile +++ b/smoke/Makefile @@ -7,7 +7,7 @@ PROXY := GOPROXY=${GOPROXY} endif build: - go test -o smoke.test -c -race -v -cover ./tests + go test -o smoke.test -c -race -v ./tests # WORK_DIR=/tmp \ # NYDUS_BUILDER=/path/to/latest/nydus-image \