Browse Source

remove vendor flag, not using modules yet

Umputun 5 years ago
parent
commit
742356b3b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -14,6 +14,6 @@ before_install:
   - export PATH=$(pwd)/bin:$PATH
 
 script:
-  - go test  -v -mod=vendor -covermode=count -coverprofile=profile.cov ./... || travis_terminate 1;
+  - go test -v -covermode=count -coverprofile=profile.cov ./... || travis_terminate 1;
   - ./bin/gometalinter --deadline=120s --exclude=test --exclude=mock --exclude=vendor --exclude=_example --disable-all --enable=errcheck --enable=vet --enable=vetshadow --enable=megacheck --enable=ineffassign --enable=varcheck --enable=unconvert --enable=deadcode --enable=interfacer --enable=gotype ./... || travis_terminate 1;
   - $GOPATH/bin/goveralls -coverprofile=profile.cov -service=travis-ci