retire test_integrations in favor of just make test

This commit is contained in:
Anton Kaliaev 2017-11-21 18:11:23 -06:00
parent 5be9c50b47
commit 52ec4efe27
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 3 additions and 3 deletions

View File

@ -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)