build: Skip running tests on /builtin/bins

This is time consuming and spams the output of Travis - to run no tests.
This commit is contained in:
James Nugent 2016-06-11 13:09:19 +01:00
parent 5bf9a95f8c
commit 1b011dedf4
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
TEST?=$$(go list ./... | grep -v /vendor/)
TEST?=$$(go list ./... | grep -v '/vendor/' | grep -v '/builtin/bins/')
VETARGS?=-all
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)