[Python-checkins] cpython: Issue 20123: Disable a problematic test.
eric.snow
python-checkins at python.org
Sun Jan 5 07:06:11 CET 2014
http://hg.python.org/cpython/rev/efcf163d04f5
changeset: 88311:efcf163d04f5
user: Eric Snow <ericsnowcurrently at gmail.com>
date: Sat Jan 04 23:04:27 2014 -0700
summary:
Issue 20123: Disable a problematic test.
files:
Lib/test/test_pydoc.py | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -634,13 +634,14 @@
self.assertIn(expected, result)
+ @unittest.skip('some buildbots are not cooperating (#20123)')
def test_modules_search_builtin(self):
- expected = '_imp - '
+ expected = 'gc - '
output = StringIO()
helper = pydoc.Helper(output=output)
with captured_stdout() as help_io:
- helper('modules low-level')
+ helper('modules garbage')
result = help_io.getvalue()
self.assertTrue(result.startswith(expected))
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list