Merge pull request #7125 from hashicorp/make-skip-bins

build: Skip running tests on /builtin/bins
This commit is contained in:
James Nugent 2016-06-11 13:19:17 +01:00 committed by GitHub
commit 21f2728a17
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)