From 294f74756761887e06d5b2084956095d4952666f Mon Sep 17 00:00:00 2001 From: Daithi Hearn Date: Fri, 12 Jan 2024 18:28:56 +0100 Subject: [PATCH] test: adding test for game service --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7a3578a..85d771d 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 "collection.go" > coverage.out + grep -v "_mocks.go" coverage-full.out | 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