You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
SHELL = bash
|
|
|
|
|
|
|
|
.PHONY: coverage
|
|
|
|
|
|
|
|
test:
|
|
|
|
go test ./...
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
[[ -d coverage ]] || mkdir coverage
|
|
|
|
go test -coverpkg=./... -coverprofile=coverage/index.out ./...
|
|
|
|
go tool cover -html=coverage/index.out -o coverage/index.html
|