From 60b136912ce4e033cf1876c4500ced64ee971fe6 Mon Sep 17 00:00:00 2001 From: Billy Zha Date: Sun, 18 Aug 2024 13:19:00 +0100 Subject: [PATCH] chore: reset test coverage package list (#1482) Signed-off-by: Billy Zha --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0d7dfa9ed..ca72c5b4b 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ LDFLAGS += -X $(PROJECT_PKG)/internal/version.GitTreeState=${GIT_DIRTY} .PHONY: test test: tidy vendor check-encoding ## tidy and run tests - $(GO_EXE) test -race -v -coverprofile=coverage.txt -covermode=atomic -coverpkg=$($(GO_EXE) list ./... | grep -v internal/testutils | tr '\n' ',') ./... + $(GO_EXE) test -race -v -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./... .PHONY: teste2e teste2e: ## run end to end tests