From 2318d037acb4bfdabd23d4e60faa6e3043bbbfff Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Mon, 9 Nov 2020 19:08:00 +0100 Subject: [PATCH] tests: Increase timeouts even more Wow the github actions machines are *slow* --- tests/pexpects/bind.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pexpects/bind.py b/tests/pexpects/bind.py index 96bfd931b..f83c0c604 100644 --- a/tests/pexpects/bind.py +++ b/tests/pexpects/bind.py @@ -47,7 +47,7 @@ expect_prompt("\r\njkl ghi\r\n") # occur and the "t" should become part of the text that is echoed. send("echo mno pqr") send("\033") -sleep(0.150) +sleep(0.180) send("t\r") # emacs transpose words, default timeout: long delay expect_prompt("\r\nmno pqrt\r\n") @@ -73,7 +73,7 @@ send("\033") # Delay needed to allow fish to transition to vi "normal" mode. The delay is # longer than strictly necessary to let fish catch up as it may be slow due to # ASAN. -sleep(0.150) +sleep(0.250) send("ddi") sendline("echo success: default escape timeout") expect_prompt( @@ -85,7 +85,7 @@ expect_prompt( send("echo TEXT") send("\033") # Delay needed to allow fish to transition to vi "normal" mode. -sleep(0.150) +sleep(0.200) send("hhrAi\r") expect_prompt( "\r\nTAXT\r\n", unmatched="vi mode replace char, default timeout: long delay"