go-json/Makefile

9 lines
197 B
Makefile
Raw Normal View History

2021-01-16 16:16:26 +03:00
.PHONY: cover
cover:
@ go test -coverprofile=cover.tmp.out . ; \
cat cover.tmp.out | grep -v "encode_optype.go" > cover.out; \
rm cover.tmp.out
cover-html: cover
go tool cover -html=cover.out