diff --git a/Makefile b/Makefile index dc996d128..a85f1772f 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ GOTOOLS = \ github.com/mitchellh/gox \ github.com/Masterminds/glide \ - gopkg.in/alecthomas/gometalinter.v2 \ github.com/gogo/protobuf/protoc-gen-gogo \ github.com/gogo/protobuf/gogoproto + #gopkg.in/alecthomas/gometalinter.v2 \ INCLUDE = -I=. -I=${GOPATH}/src -I=${GOPATH}/src/github.com/gogo/protobuf/protobuf -all: protoc install test metalinter +all: protoc install test PACKAGES=$(shell go list ./... | grep -v '/vendor/') @@ -62,7 +62,7 @@ get_deps: ensure_tools: go get -u -v $(GOTOOLS) - @ gometalinter.v2 --install + #@ gometalinter.v2 --install get_vendor_deps: ensure_tools @ rm -rf vendor/ diff --git a/circle.yml b/circle.yml index 32ce4a7a0..524844357 100644 --- a/circle.yml +++ b/circle.yml @@ -15,7 +15,7 @@ checkout: test: override: - - cd $REPO && make get_vendor_deps && make metalinter && make test_integrations + - cd $REPO && make get_vendor_deps && make test_integrations post: - cd "$REPO" && bash <(curl -s https://codecov.io/bash) -f coverage.txt - cd "$REPO" && mv coverage.txt "${CIRCLE_ARTIFACTS}"