From 7727e739b662299df2ee07dc7d9561458a31cc1f Mon Sep 17 00:00:00 2001 From: Justin Alvarez Date: Tue, 28 Mar 2023 11:55:50 -0400 Subject: [PATCH] increase test timeouts Signed-off-by: Justin Alvarez --- e2e/vm/config_test.go | 2 +- e2e/vm/vm_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/vm/config_test.go b/e2e/vm/config_test.go index 518d533c6..cfc1e4746 100644 --- a/e2e/vm/config_test.go +++ b/e2e/vm/config_test.go @@ -83,7 +83,7 @@ var testConfig = func(o *option.Option, installed bool) { writeFile(limaConfigFilePath, origLimaCfg) command.New(o, virtualMachineRootCmd, "stop").WithoutCheckingExitCode().WithTimeoutInSeconds(90).Run() - command.New(o, virtualMachineRootCmd, "start").WithTimeoutInSeconds(120).Run() + command.New(o, virtualMachineRootCmd, "start").WithTimeoutInSeconds(600).Run() }) }) diff --git a/e2e/vm/vm_test.go b/e2e/vm/vm_test.go index 13efed35b..b4843c46d 100644 --- a/e2e/vm/vm_test.go +++ b/e2e/vm/vm_test.go @@ -75,7 +75,7 @@ var resetVM = func(o *option.Option, installed bool) string { writeFile(limaConfigFilePath, origLimaCfg) command.New(o, virtualMachineRootCmd, "stop", "-f").WithoutCheckingExitCode().WithTimeoutInSeconds(90).Run() command.New(o, virtualMachineRootCmd, "remove", "-f").WithoutCheckingExitCode().WithTimeoutInSeconds(90).Run() - command.New(o, virtualMachineRootCmd, "init").WithoutCheckingExitCode().WithTimeoutInSeconds(90).Run() + command.New(o, virtualMachineRootCmd, "init").WithoutCheckingExitCode().WithTimeoutInSeconds(600).Run() }) return limaConfigFilePath