1
0
mirror of https://github.com/ggicci/httpin.git synced 2024-11-28 08:49:05 +02:00
httpin/Makefile
2021-04-23 11:26:31 +08:00

17 lines
290 B
Makefile

default: test
GO=go
GOTEST=$(GO) test
GOCOVER=$(GO) tool cover
.PHONY: test
test: test/cover test/report
.PHONY: test/cover
test/cover:
$(GOTEST) -v -race -failfast -parallel 4 -cpu 4 -coverprofile main.cover.out ./...
.PHONY: test/report
test/report:
$(GOCOVER) -html=main.cover.out