From f5797dcd89b82636b6fd3360de84156f2cefbed8 Mon Sep 17 00:00:00 2001 From: Daithi Hearn Date: Sat, 13 Jan 2024 13:07:54 +0100 Subject: [PATCH] chore: ignoring handlers in codecov tests. will be covered in integration testing --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8a69b78..e9ab286 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ docs: #@ Generate docs .PHONY:docs test: fmt vet #@ Run tests go test -tags testutils -coverprofile=coverage-full.out ./... - grep -v "_mocks.go" coverage-full.out | grep -v "handlers.go" | grep -v "testdata.go" | grep -v "collection.go" > coverage.out + grep -v "_mocks.go" coverage-full.out | grep -v "handler.go" | grep -v "testdata.go" | grep -v "collection.go" > coverage.out go tool cover -html=coverage.out -o coverage.html .PHONY:test fmt: #@ Format the code