From b46862c71c47ac666ed6f82e8fa9b485cada9e0f Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Fri, 11 Oct 2024 20:06:46 -0700 Subject: [PATCH] [testing] Double the image build timeout for bootstrap monitor e2e --- tests/fixture/bootstrapmonitor/e2e/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixture/bootstrapmonitor/e2e/e2e_test.go b/tests/fixture/bootstrapmonitor/e2e/e2e_test.go index 45de49bce990..99375c7667b8 100644 --- a/tests/fixture/bootstrapmonitor/e2e/e2e_test.go +++ b/tests/fixture/bootstrapmonitor/e2e/e2e_test.go @@ -244,7 +244,7 @@ func buildImage(tc tests.TestContext, imageName string, forceNewHash bool, scrip } cmd := exec.CommandContext( - tc.DefaultContext(), + tc.ContextWithTimeout(e2e.DefaultTimeout*2), // Double the timeout to account for CI being really slow "bash", args..., ) // #nosec G204