2016-02-13 00:50:37 +00:00
|
|
|
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
|
|
|
|
|
|
|
test:
|
2017-08-24 21:44:05 +00:00
|
|
|
go test -timeout=60s .
|
2016-02-13 00:50:37 +00:00
|
|
|
|
|
|
|
integ: test
|
2017-08-24 21:44:05 +00:00
|
|
|
INTEG_TESTS=yes go test -timeout=25s -run=Integ .
|
2016-02-13 00:50:37 +00:00
|
|
|
|
2017-08-24 21:44:05 +00:00
|
|
|
fuzz:
|
|
|
|
go test -timeout=300s ./fuzzy
|
|
|
|
|
2016-02-13 00:50:37 +00:00
|
|
|
deps:
|
|
|
|
go get -d -v ./...
|
|
|
|
echo $(DEPS) | xargs -n1 go get -d
|
|
|
|
|
|
|
|
cov:
|
|
|
|
INTEG_TESTS=yes gocov test github.com/hashicorp/raft | gocov-html > /tmp/coverage.html
|
|
|
|
open /tmp/coverage.html
|
|
|
|
|
|
|
|
.PHONY: test cov integ deps
|