Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a46ef70

Browse files
Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.
I'll look into re-enabling them in issue #20128.
1 parent b070b3f commit a46ef70

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/test/test_pydoc.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ def test_apropos_with_unreadable_dir(self):
618618
self.assertEqual(out.getvalue(), '')
619619
self.assertEqual(err.getvalue(), '')
620620

621+
@unittest.skip('causes undesireable side-effects (#20128)')
621622
def test_modules(self):
622623
# See Helper.listmodules().
623624
num_header_lines = 2
@@ -633,6 +634,7 @@ def test_modules(self):
633634

634635
self.assertGreaterEqual(num_lines, expected)
635636

637+
@unittest.skip('causes undesireable side-effects (#20128)')
636638
def test_modules_search(self):
637639
# See Helper.listmodules().
638640
expected = 'pydoc - '
@@ -645,7 +647,7 @@ def test_modules_search(self):
645647

646648
self.assertIn(expected, result)
647649

648-
@unittest.skip('some buildbots are not cooperating (#20123)')
650+
@unittest.skip('some buildbots are not cooperating (#20128)')
649651
def test_modules_search_builtin(self):
650652
expected = 'gc - '
651653

0 commit comments

Comments
 (0)