From e43f48bfb8ca138089507a92d261b1633abcf7b3 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 11 Feb 2025 07:09:48 +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 ========================"