tests: increase the klippy process timeout to 2.5 seconds
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
f7f487ac18
commit
6946f67dbf
|
@ -32,7 +32,7 @@ class KlippyProcess:
|
|||
cmd = f"{self.base_cmd} {args}"
|
||||
cmd_parts = shlex.split(cmd)
|
||||
self.proc = subprocess.Popen(cmd_parts)
|
||||
for _ in range(25):
|
||||
for _ in range(250):
|
||||
if self.pty_path.exists():
|
||||
try:
|
||||
self.fd = os.open(
|
||||
|
|
Loading…
Reference in New Issue