From 2d75c83aeb79975f29b6df833bb0a07f7f6f5265 Mon Sep 17 00:00:00 2001 From: Ivan Kozlovic Date: Wed, 28 Feb 2018 11:39:33 -0700 Subject: [PATCH] Remove megacheck for now Reason: https://github.com/dominikh/go-tools/issues/269 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 60048803..69ce3326 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - go get github.com/nats-io/go-nats - go get github.com/mattn/goveralls - go get github.com/wadey/gocovmerge -- go get -u honnef.co/go/tools/cmd/megacheck +#- go get -u honnef.co/go/tools/cmd/megacheck - go get -u github.com/client9/misspell/cmd/misspell before_script: - EXCLUDE_VENDOR=$(go list ./... | grep -v "/vendor/") @@ -15,7 +15,7 @@ before_script: - $(exit $(go fmt $EXCLUDE_VENDOR | wc -l)) - go vet $EXCLUDE_VENDOR - misspell -error -locale US . -- megacheck $EXCLUDE_VENDOR +#- megacheck $EXCLUDE_VENDOR - if [[ "$TRAVIS_GO_VERSION" == 1.9.* ]]; then ./scripts/cross_compile.sh $TRAVIS_TAG; fi script: - go test -i -race $EXCLUDE_VENDOR