From 4ac99240888e4c4257cec677590b4013186f2bae Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Tue, 26 Jan 2021 07:07:51 +0100 Subject: [PATCH] tests: Deactivate that one bind test that still keeps failing This test has never failed for me in earnest, it's only when CI is too slow that I've ever seen it fail. So it's a net-negative and should be removed --- tests/pexpects/bind.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/pexpects/bind.py b/tests/pexpects/bind.py index c5c866405..41a0cb558 100644 --- a/tests/pexpects/bind.py +++ b/tests/pexpects/bind.py @@ -192,14 +192,15 @@ send("hhtTrN\r") expect_prompt("\r\nTENT\r\n", unmatched="Couldn't find expected output 'TENT'") # Test '~' (togglecase-char) -send("\033") -sleep(0.100) -send("cc") -sleep(0.50) -send("echo some TExT\033") -sleep(0.300) -send("hh~~bbve~\r") -expect_prompt("\r\nSOME TeXT\r\n", unmatched="Couldn't find expected output 'SOME TeXT") +# HACK: Deactivated because it keeps failing on CI +# send("\033") +# sleep(0.100) +# send("cc") +# sleep(0.50) +# send("echo some TExT\033") +# sleep(0.300) +# send("hh~~bbve~\r") +# expect_prompt("\r\nSOME TeXT\r\n", unmatched="Couldn't find expected output 'SOME TeXT") # Now test that exactly the expected bind modes are defined sendline("bind --list-modes")