summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/Makefile')
-rw-r--r--vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/Makefile b/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/Makefile
deleted file mode 100644
index 49f82992..00000000
--- a/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
-
-test:
- go test -timeout=60s ./...
-
-integ: test
- INTEG_TESTS=yes go test -timeout=5s -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