From 4f8cac64a6f04d98c147f63f1a99370c7b2dc900 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Wed, 11 Sep 2019 16:19:25 -0700 Subject: [PATCH] Extend TestFunctional context timeout to 40 minutes --- test/integration/functional_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 054c8ff360..69a8864e93 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -48,7 +48,7 @@ type validateFunc func(context.Context, *testing.T, string) func TestFunctional(t *testing.T) { profile := UniqueProfileName("functional") - ctx, cancel := context.WithTimeout(context.Background(), 25*time.Minute) + ctx, cancel := context.WithTimeout(context.Background(), 40*time.Minute) defer CleanupWithLogs(t, profile, cancel) // Serial tests