summaryrefslogtreecommitdiff
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
commit9d4c5f46404938659c7386b13f16e72ccca01344 (patch)
tree958bf7136bea1a27eee618606cdeffc2c7cb6165
parentb79b785a921959245ebc96ae5da216da593959a5 (diff)
downloadcpython-git-9d4c5f46404938659c7386b13f16e72ccca01344.tar.gz
Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.
I'll look into re-enabling them in issue #20128.
-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 f6aae122e0..81b58a2e80 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -608,6 +608,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
@@ -623,6 +624,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 - '
@@ -635,7 +637,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 - '