summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/francoispqt/gojay/Makefile
blob: ce9572391e774e5406cc386f30f49846404a3db6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: test
test:
	go test -race -run=^Test -v

.PHONY: cover
cover: 
	go test -coverprofile=coverage.out -covermode=atomic

.PHONY: coverhtml
coverhtml: 
	go tool cover -html=coverage.out