influxdb/Makefile

14 lines
194 B
Makefile

all: test
coverage:
gocov test github.com/goraft/raft | gocov-html > coverage.html
open coverage.html
dependencies:
go get -d .
test:
go test -v ./...
.PHONY: coverage dependencies test