From e24e4810ac1138418a9636ee94e9473df8876063 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 31 Jan 2022 18:37:45 -0500 Subject: add testjson, cov, covhtml, and clean targets, add coverage files to .gitignore --- Makefile | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a9cb09b..7ff8ea9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,22 @@ -.PHONY=all test +.PHONY=all test cov covhtml clean all: - go1.18beta1 build + go1.18beta1 build -ldflags='-s -w' test: go1.18beta1 test ./... + +testjson: + go1.18beta1 test -json ./... + +cov: + go1.18beta1 test -coverprofile=coverage.out ./... && \ + go1.18beta1 tool cover -func=coverage.out + +covhtml: + go1.18beta1 test -coverprofile=coverage.out ./... && \ + go1.18beta1 tool cover -html=coverage.out -o coverage.html && \ + xdg-open ./coverage.html + +clean: + go1.18beta1 clean -- cgit v1.2.3