From 510cc8ecdc96dc760f3a396c39063a452ff8f1e6 Mon Sep 17 00:00:00 2001 From: Filipe Brandenburger Date: Wed, 27 Aug 2014 08:11:35 -0700 Subject: [PATCH] Revert "change travis.yml to install godep" This reverts commit 453c328fc9585a67f3524a84ce996f86a06ab80d. Having `godep` installed is not necessarily for build & test, only to manage the dependencies under the Godeps/ tree. Signed-off-by: Filipe Brandenburger --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ab92db69db..fa481047bb5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,14 +8,13 @@ go: install: - go get code.google.com/p/go.tools/cmd/cover - go get github.com/coreos/etcd - - go get github.com/tools/godep - ./hack/verify-gofmt.sh - ./hack/verify-boilerplate.sh - ./hack/install-std-race.sh - - PATH=$HOME/gopath/bin:$PATH ./hack/build-go.sh + - ./hack/build-go.sh script: - - PATH=$HOME/gopath/bin:$PATH ./hack/test-go.sh + - ./hack/test-go.sh - PATH=$HOME/gopath/bin:$PATH ./hack/test-cmd.sh - PATH=$HOME/gopath/bin:$PATH ./hack/test-integration.sh