[Python-checkins] bpo-29240: Skip test_readline.test_nonascii() (#4968)

Victor Stinner webhook-mailer at python.org
Thu Dec 21 18:09:29 EST 2017


https://github.com/python/cpython/commit/424315fa865b43f67e36a40647107379adf031da
commit: 424315fa865b43f67e36a40647107379adf031da
branch: master
author: Victor Stinner <victor.stinner at gmail.com>
committer: GitHub <noreply at github.com>
date: 2017-12-22T00:09:26+01:00
summary:

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.

files:
M Lib/test/test_readline.py

diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py
index b4c25dee9d3..28ea38b747e 100644
--- a/Lib/test/test_readline.py
+++ b/Lib/test/test_readline.py
@@ -152,6 +152,8 @@ def test_auto_history_disabled(self):
         output = run_pty(self.auto_history_script.format(False))
         self.assertIn(b"History length: 0\r\n", output)
 
+    @unittest.skipIf(True,
+                     "FIXME: test broken by bpo-29240")
     def test_nonascii(self):
         try:
             readline.add_history("\xEB\xEF")



More information about the Python-checkins mailing list