godep restore pushd $GOPATH/src/github.com/appc/spec git co master popd go get go4.org/errorutil rm -rf Godeps godep save ./... git add vendor git add -f $(git ls-files --other vendor/) git co -- Godeps/LICENSES Godeps/.license_file_state Godeps/OWNERS
18 lines
377 B
Makefile
18 lines
377 B
Makefile
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
|
|
|
test:
|
|
go test -timeout=5s ./...
|
|
|
|
integ: test
|
|
INTEG_TESTS=yes go test -timeout=3s -run=Integ ./...
|
|
|
|
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
|