From 7d018ef1befa1fe9477e6b653a510494e8de5913 Mon Sep 17 00:00:00 2001 From: Ivo Verberk Date: Sun, 5 Jun 2016 12:04:12 +0200 Subject: [PATCH] Scope the test --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 30b1560d0..b34ec1ce0 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -10,4 +10,4 @@ go build -o $TEMPDIR/nomad || exit 1 # Run the tests echo "--> Running tests" -go list ./... | grep -v '/vendor/' | sudo -E PATH=$TEMPDIR:$PATH xargs -n1 go test -cover -timeout=360s +go list ./... | grep -v '/vendor/' | grep 'client/driver$' | sudo -E PATH=$TEMPDIR:$PATH xargs -n1 go test -cover -timeout=600s