summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 25007a9769..ee8d5eb6d0 100644
--- a/Makefile
+++ b/Makefile
@@ -79,6 +79,13 @@ integrations: build
test:
for PKG in $(PACKAGES); do go test -cover -coverprofile $$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done;
+.PHONY: test-vendor
+test-vendor:
+ @hash govendor > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
+ go get -u github.com/kardianos/govendor; \
+ fi
+ govendor status +outside +unused || exit 1
+
.PHONY: test-mysql
test-mysql:
@echo "Not integrated yet!"