From f5d87095efa1ab6684db0e9b1729fbac5e11db3a Mon Sep 17 00:00:00 2001 From: Marius Date: Fri, 30 Sep 2016 01:12:11 +0200 Subject: [PATCH] Exclude Go1.5 instead of 1.7 from Consul tests --- .scripts/test_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/test_all.sh b/.scripts/test_all.sh index f3876d8..bbe6007 100755 --- a/.scripts/test_all.sh +++ b/.scripts/test_all.sh @@ -9,7 +9,7 @@ packages=$(find ./ -maxdepth 2 -name '*.go' -printf '%h\n' | sort | uniq) # corresponding tests on these versions. goversion=$(go version) if [[ "$goversion" == *"go1.4"* ]] || - [[ "$goversion" == *"go1.7"* ]]; then + [[ "$goversion" == *"go1.5"* ]]; then echo "Skipping tests requiring Consul which is not supported on $goversion"