From d77f182dfd5ab27e208f5935e564a92b6902d7b5 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Mon, 10 Jan 2022 15:55:20 -0800 Subject: [PATCH] increase timeout for DryRun to 20 seconds --- 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 d1ad505db4..e431ed552c 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -949,7 +949,7 @@ func validateDryRun(ctx context.Context, t *testing.T, profile string) { // dry-run mode should always be able to finish quickly (<5s) expect Docker Windows timeout := Seconds(5) if runtime.GOOS == "windows" && DockerDriver() { - timeout = Seconds(10) + timeout = Seconds(20) } mctx, cancel := context.WithTimeout(ctx, timeout) defer cancel()