From 52ec4efe275ec96d01d741415996d473c748b19e Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Tue, 21 Nov 2017 18:11:23 -0600 Subject: [PATCH] retire test_integrations in favor of just make test --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index aeb6d7160..57ab4052d 100644 --- a/Makefile +++ b/Makefile @@ -37,15 +37,15 @@ dist: # test.sh requires that we run the installed cmds, must not be out of date test: install - find . -path ./vendor -prune -o -name *.sock -exec rm {} \; + @ find . -path ./vendor -prune -o -name "*.sock" -exec rm {} \; + @ echo "==> Running unit tests" @ go test $(PACKAGES) + @ echo "==> Running integration tests (./tests)" @ bash tests/test.sh fmt: @ go fmt ./... -test_integrations: get_vendor_deps install test - get_deps: @ go get -d $(PACKAGES)