Browse Source

abandon the metalinter because honestly who has the time

pull/1780/head
Ethan Buchman 7 years ago
parent
commit
70da70d852
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      Makefile
  2. +1
    -1
      circle.yml

+ 3
- 3
Makefile View File

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


+ 1
- 1
circle.yml View File

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

Loading…
Cancel
Save