Files
watchdog/Makefile

9 lines
129 B
Makefile
Raw Normal View History

.PHONY: coverage test
coverage:
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
test:
go test -v -cover