Just use go get in the travis config to ensure ginkgo is installed

This commit is contained in:
Paul Bonser 2016-09-27 14:42:46 -05:00
parent c83171bffe
commit 2bd116556b
2 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ before_script:
install:
- go get github.com/Masterminds/glide
- go get github.com/onsi/ginkgo/ginkgo
script:
- make test

View File

@ -5,7 +5,7 @@ help:
@echo "- watch: watch for changes and re-run tests"
deps:
glide install && GO15VENDOREXPERIMENT=1 go install github.com/onsi/ginkgo/ginkgo
glide install
test: deps
ginkgo -race -randomizeAllSpecs -r -skipPackage vendor -progress .