argh/Makefile

21 lines
286 B
Makefile
Raw Permalink Normal View History

BENCHTIME ?= 10s
2022-07-16 14:22:47 +00:00
.PHONY: all
all: test
.PHONY: clean
clean:
rm -f coverage.out
.PHONY: test
test:
go test -v -coverprofile=coverage.out ./...
.PHONY: bench
bench:
go test -v -bench . -benchtime $(BENCHTIME) ./...
2022-07-16 14:22:47 +00:00
.PHONY: show-cover
show-cover:
go tool cover -func=coverage.out