build: update travis script to exclude the vendor dir when running tests

This commit is contained in:
Olaoluwa Osuntokun 2016-07-28 11:22:43 -07:00
parent 4104a9bcde
commit 2a5fa0522d
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -10,4 +10,4 @@ install:
script:
- export PATH=$PATH:$HOME/gopath/bin
- export GO15VENDOREXPERIMENT=1
- go test -v ./...
- go test -v $(GO15VENDOREXPERIMENT=1 go list ./... | grep -v '/vendor/')