From 1b011dedf453ec6fa3ab3de5f676d1c2ecca1919 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Sat, 11 Jun 2016 13:09:19 +0100 Subject: [PATCH] build: Skip running tests on /builtin/bins This is time consuming and spams the output of Travis - to run no tests. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 391d33e4d..c4db6275e 100644 --- a/Makefile +++ b/Makefile @@ -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)