From 3a8b524d36a08f8039a80b8236165379777ebb1e Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Wed, 7 Dec 2016 10:07:43 -0800 Subject: [PATCH] travis, test: use Go 1.6.4, skip 'gosimple' --- .travis.yml | 3 +-- test | 9 --------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index e3be66779..a59a9a293 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,7 @@ go_import_path: github.com/coreos/etcd sudo: false go: - - 1.6 - - tip + - 1.6.4 env: global: diff --git a/test b/test index 4f24606ae..fc5a3bfc0 100755 --- a/test +++ b/test @@ -125,15 +125,6 @@ function fmt_tests { fi if which gosimple >/dev/null; then - echo "Checking gosimple..." - for path in $GOSIMPLE_UNUSED_PATHS; do - simplResult=`gosimple $REPO_PATH/${path} || true` - if [ -n "${simplResult}" ]; then - echo -e "gosimple checking ${path} failed:\n${simplResult}" - exit 255 - fi - done - else echo "Skipping gosimple..." fi