From bf809451681b0f72f9f986a71f61bbcea7b2a288 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Thu, 24 Oct 2024 18:08:43 +0000 Subject: [PATCH] rename make testsd target to test --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 87fbb73..e72b3ca 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -.PHONY: build tests clean dev-init dev-reinit +.PHONY: build test clean dev-init dev-reinit build: clean @echo "======================== Building Binary =======================" CGO_ENABLED=0 go build -ldflags="-s -w" -v -o dist/ . -tests: dev-reinit +test: dev-reinit @echo "======================== Running Tests =========================" go test -v -cover -coverpkg=./app/ -coverprofile coverage ./test/ @echo "======================= Coverage Report ========================"