From c55edcb97d523d38d643e64611ba19b050366e43 Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Date: Wed, 19 Apr 2023 13:31:11 +0200 Subject: [PATCH] Remove acctest pkg from packages to test and report coverage on --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af8f01ead..9a62e8859 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ BUILD_DIR ?= $(CURDIR)/out GO_OS ?= $(shell go env GOOS) GO_ARCH ?= $(shell go env GOARCH) -GO_PACKAGES := $(shell go list ./... | grep -vE "vendor|tools|sweep") +GO_PACKAGES := $(shell go list ./... | grep -vE "vendor|tools|sweep|acctest") GO_LINT_SCRIPT ?= $(CURDIR)/scripts/golangci-lint.sh GO_TEST_COVERAGE_FILE ?= "coverage.out"