go-chart/Makefile

9 lines
149 B
Makefile
Raw Permalink Normal View History

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