Exclude Go1.5 instead of 1.7 from Consul tests

This commit is contained in:
Marius 2016-09-30 01:12:11 +02:00
parent a4f565330b
commit f5d87095ef
1 changed files with 1 additions and 1 deletions

View File

@ -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"