go-chart/Makefile

9 lines
149 B
Makefile
Raw Permalink Normal View History

2016-07-23 01:43:27 -04:00
all: test
test:
@go test ./...
2016-07-28 19:36:30 -04:00
cover:
@go test -short -covermode=set -coverprofile=profile.cov
@go tool cover -html=profile.cov
@rm profile.cov