Add target for the test report as html
parent
85443b65e1
commit
5ca89279e6
|
@ -22,6 +22,7 @@ _cgo_export.*
|
||||||
|
|
||||||
_testmain.go
|
_testmain.go
|
||||||
|
|
||||||
|
test-report.html
|
||||||
coverage.html
|
coverage.html
|
||||||
|
|
||||||
*.exe
|
*.exe
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -374,6 +374,11 @@ out/test-report.json: $(SOURCE_FILES) $(GOTEST_FILES)
|
||||||
-coverprofile=out/coverage.out -json > out/test-report.json
|
-coverprofile=out/coverage.out -json > out/test-report.json
|
||||||
out/coverage.out: out/test-report.json
|
out/coverage.out: out/test-report.json
|
||||||
|
|
||||||
|
# Generate go test report (from gotest) as a a HTML page
|
||||||
|
test-report.html: out/test-report.json
|
||||||
|
$(if $(quiet),@echo " REPORT $@")
|
||||||
|
$(Q)go-test-report < $< -o $@
|
||||||
|
|
||||||
# Generate go coverage report (from gotest) as a HTML page
|
# Generate go coverage report (from gotest) as a HTML page
|
||||||
coverage.html: out/coverage.out
|
coverage.html: out/coverage.out
|
||||||
$(if $(quiet),@echo " COVER $@")
|
$(if $(quiet),@echo " COVER $@")
|
||||||
|
|
Loading…
Reference in New Issue