You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
244 B
15 lines
244 B
6 years ago
|
.PHONY: build test bench vet coverage
|
||
|
|
||
|
build: vet bench
|
||
|
|
||
|
test:
|
||
|
go test -v -cover -race
|
||
|
|
||
|
bench:
|
||
|
go test -v -cover -race -test.bench=. -test.benchmem
|
||
|
|
||
|
vet:
|
||
|
go vet
|
||
|
|
||
|
coverage:
|
||
|
go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out
|