From 3921637878bc10e07433950f86ea5ffadaaae9e8 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Fri, 1 Apr 2016 14:21:02 -0700 Subject: [PATCH] fix(e2e): set longer timeout for docker --- test/e2e/helm.go | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/test/e2e/helm.go b/test/e2e/helm.go index ea7ccc257..d53974193 100644 --- a/test/e2e/helm.go +++ b/test/e2e/helm.go @@ -10,6 +10,7 @@ import ( "path/filepath" "strings" "testing" + "time" ) const ( @@ -18,15 +19,17 @@ const ( ) type HelmContext struct { - t *testing.T - Path string - Host string + t *testing.T + Path string + Host string + Timeout time.Duration } func NewHelmContext(t *testing.T) *HelmContext { return &HelmContext{ - t: t, - Path: RepoRoot() + "/bin/helm", + t: t, + Path: RepoRoot() + "/bin/helm", + Timeout: time.Second * 20, } }