From 389bf559666a25cfbc0c501f8e13f5afc63a496b Mon Sep 17 00:00:00 2001 From: Alex Mohr Date: Mon, 9 Mar 2015 15:25:50 -0700 Subject: [PATCH] Increase KUBE_TIMEOUT from 60s to 300s in .travis.yml. Our passing coverage runs take 30-60s, but a number of them reach the 60s timeout and are aborted. It seems our Travis (and Shippable?) flakiness is self-inflicted due to too-short timeouts? --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 23971f603b0d7..8a60e20505085 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ install: - ./hack/build-go.sh script: - - KUBE_RACE="-race" KUBE_COVER="y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls" KUBE_TIMEOUT='-timeout 60s' KUBE_COVERPROCS=8 ./hack/test-go.sh -- -p=2 + - KUBE_RACE="-race" KUBE_COVER="y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls" KUBE_TIMEOUT='-timeout 300s' KUBE_COVERPROCS=8 ./hack/test-go.sh -- -p=2 - PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-cmd.sh - PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/verify-gendocs.sh - PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-integration.sh