From acc30d75c95eab8185608b578382f861d93a01f0 Mon Sep 17 00:00:00 2001 From: Kevin Klues Date: Fri, 12 Apr 2024 21:26:47 +0000 Subject: [PATCH] Enable testing in pkg/... Signed-off-by: Kevin Klues --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bf3f991b..eadef376 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ lint: COVERAGE_FILE := coverage.out test: build cmds - go test -coverprofile=$(COVERAGE_FILE) $(MODULE)/cmd/... $(MODULE)/internal/... $(MODULE)/api/... + go test -coverprofile=$(COVERAGE_FILE) $(MODULE)/cmd/... $(MODULE)/internal/... $(MODULE)/api/... $(MODULE)/pkg/... coverage: test cat $(COVERAGE_FILE) | grep -v "_mock.go" > $(COVERAGE_FILE).no-mocks