[Python-checkins] cpython (3.4): Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.
larry.hastings
python-checkins at python.org
Mon Mar 17 07:32:51 CET 2014
http://hg.python.org/cpython/rev/7cfb3db36ec6
changeset: 89763:7cfb3db36ec6
branch: 3.4
user: Eric Snow <ericsnowcurrently at gmail.com>
date: Sat Feb 22 13:57:08 2014 -0700
summary:
Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.
I'll look into re-enabling them in issue #20128.
files:
Lib/test/test_pydoc.py | 4 +++-
1 files changed, 3 insertions(+), 1 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
@@ -608,6 +608,7 @@
self.assertEqual(out.getvalue(), '')
self.assertEqual(err.getvalue(), '')
+ @unittest.skip('causes undesireable side-effects (#20128)')
def test_modules(self):
# See Helper.listmodules().
num_header_lines = 2
@@ -623,6 +624,7 @@
self.assertGreaterEqual(num_lines, expected)
+ @unittest.skip('causes undesireable side-effects (#20128)')
def test_modules_search(self):
# See Helper.listmodules().
expected = 'pydoc - '
@@ -635,7 +637,7 @@
self.assertIn(expected, result)
- @unittest.skip('some buildbots are not cooperating (#20123)')
+ @unittest.skip('some buildbots are not cooperating (#20128)')
def test_modules_search_builtin(self):
expected = 'gc - '
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list