Skip to content

Commit

Permalink
increase test timeouts
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Alvarez <[email protected]>
  • Loading branch information
pendo324 committed Mar 28, 2023
1 parent 15150b3 commit 7727e73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/vm/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
})
})

Expand Down
2 changes: 1 addition & 1 deletion e2e/vm/vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7727e73

Please sign in to comment.