From: Eric Snow Date: Sat, 22 Feb 2014 20:57:08 +0000 (-0700) Subject: Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc. X-Git-Tag: v3.4.1rc1~233^2~243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a46ef70bdfa0273a9d2cc40014c0ab74967fe654;p=thirdparty%2FPython%2Fcpython.git Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc. I'll look into re-enabling them in issue #20128. --- diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 96b923077fb0..f26fb15f535c 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 - '