fix(Makefile): step to generate html coverage site

This commit is contained in:
2020-01-18 14:41:17 +01:00
parent 3581424bd2
commit 546139492b
2 changed files with 7 additions and 1 deletions

View File

@ -184,7 +184,10 @@ test/goldenfiles/bindata.go:
# ==============================================================================
PHONY+=test/unit
test/unit: clean bindata
go test -v ./...
go test -coverprofile coverage.html -v ./...
test/cover-html: test/unit
go tool cover -html coverage.html
# PACKAGES
# ==============================================================================