Skip to content

Commit 424315f

Browse files
authored
bpo-29240: Skip test_readline.test_nonascii() (#4968)
Skip the test which fails on FreeBSD with POSIX locale. Skip the test to fix FreeBSD buildbots, until a fix can be found, so the buildbots can catch other regressions.
1 parent 550ee05 commit 424315f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_readline.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,8 @@ def test_auto_history_disabled(self):
152152
output = run_pty(self.auto_history_script.format(False))
153153
self.assertIn(b"History length: 0\r\n", output)
154154

155+
@unittest.skipIf(True,
156+
"FIXME: test broken by bpo-29240")
155157
def test_nonascii(self):
156158
try:
157159
readline.add_history("\xEB\xEF")

0 commit comments

Comments
 (0)