From 129e5f43ce1948ab26502dbd883afb28ad4a76a0 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Fri, 12 Feb 2016 10:26:19 -0800 Subject: [PATCH] Excluding vendor tests --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 8f38f2919..d1828e3b1 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -12,4 +12,4 @@ go build -o $TEMPDIR/nomad || exit 1 # Run the tests echo "--> Running tests" -go list ./... | sudo -E PATH=$TEMPDIR:$PATH xargs -n1 go test -cover -timeout=180s +go list ./... | grep -v '/vendor/' | sudo -E PATH=$TEMPDIR:$PATH xargs -n1 go test -cover -timeout=180s