From: Bjørn Erik Pedersen Date: Sun, 27 Nov 2016 22:21:10 +0000 (+0100) Subject: makefile: Add test-cover-html X-Git-Tag: v0.18~40 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b7e80045;p=brevno-suite%2Fhugo makefile: Add test-cover-html --- diff --git a/.gitignore b/.gitignore index 5b726dc0..f72d3ad7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,5 @@ cover.out .DS_Store *~ vendor/*/ -*.bench \ No newline at end of file +*.bench +coverage*.out \ No newline at end of file diff --git a/Makefile b/Makefile index 684e1d1b..6d5aeed1 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ COMMIT_HASH=`git rev-parse --short HEAD 2>/dev/null` BUILD_DATE=`date +%FT%T%z` LDFLAGS=-ldflags "-X github.com/spf13/hugo/hugolib.CommitHash=${COMMIT_HASH} -X github.com/spf13/hugo/hugolib.BuildDate=${BUILD_DATE}" +PACKAGES = $(shell govendor list -no-status +local | sed 's/github.com.spf13.hugo/./') all: gitinfo @@ -74,3 +75,9 @@ vet: echo "^ go vet errors!" && echo && exit 1; \ fi +test-cover-html: + echo "mode: count" > coverage-all.out + $(foreach pkg,$(PACKAGES),\ + govendor test -coverprofile=coverage.out -covermode=count $(pkg);\ + tail -n +2 coverage.out >> coverage-all.out;) + go tool cover -html=coverage-all.out \ No newline at end of file