diff options
author | Paul Duncan <pabs@pablotron.org> | 2022-01-31 18:37:45 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2022-01-31 18:37:45 -0500 |
commit | e24e4810ac1138418a9636ee94e9473df8876063 (patch) | |
tree | 7736c10516543af16ce7334d9f4ebb953856e669 | |
parent | 531c15b6c5f6c3d274ffec11a15b0ad22d685a90 (diff) | |
download | cvez-e24e4810ac1138418a9636ee94e9473df8876063.tar.bz2 cvez-e24e4810ac1138418a9636ee94e9473df8876063.zip |
add testjson, cov, covhtml, and clean targets, add coverage files to .gitignore
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 19 |
2 files changed, 19 insertions, 2 deletions
@@ -1,2 +1,4 @@ *.sw? nvd +coverage.out +coverage.html @@ -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 |