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.
17 lines
251 B
17 lines
251 B
COVERPROFILE=cover.out
|
|
|
|
default: test
|
|
|
|
cover:
|
|
go test -coverprofile=$(COVERPROFILE) .
|
|
go tool cover -html=$(COVERPROFILE)
|
|
rm $(COVERPROFILE)
|
|
|
|
dependencies:
|
|
go get -d .
|
|
|
|
test:
|
|
go test -i ./...
|
|
go test -v ./...
|
|
|
|
.PHONY: coverage dependencies test
|