summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2014-02-22 13:57:08 -0700
committerEric Snow <ericsnowcurrently@gmail.com>2014-02-22 13:57:08 -0700
commit4c9240a45d81a0ebe54e30bc577b57ad53721f5d (patch)
treeae1721f5277b34e768cb19f33baed9747d37e1ef /Lib/test
parent537047b4a1087498db858dd5f8c115875c6f63cf (diff)
downloadcpython-4c9240a45d81a0ebe54e30bc577b57ad53721f5d.tar.gz
Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.
I'll look into re-enabling them in issue #20128.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_pydoc.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index 96b923077f..f26fb15f53 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -618,6 +618,7 @@ class PydocImportTest(PydocBaseTest):
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
@@ -633,6 +634,7 @@ class PydocImportTest(PydocBaseTest):
self.assertGreaterEqual(num_lines, expected)
+ @unittest.skip('causes undesireable side-effects (#20128)')
def test_modules_search(self):
# See Helper.listmodules().
expected = 'pydoc - '
@@ -645,7 +647,7 @@ class PydocImportTest(PydocBaseTest):
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 - '