Skip to content

Commit b402a48

Browse files
authored
gh-132912: Skip flaky test in test_remote_pdb (#132924)
1 parent 25e4984 commit b402a48

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_remote_pdb.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,8 @@ def test_breakpoints(self):
462462
self.assertIn("Function returned: 42", stdout)
463463
self.assertEqual(process.returncode, 0)
464464

465+
# gh-132912: The test fails randomly
466+
@unittest.skipIf(True, "flaky test")
465467
def test_keyboard_interrupt(self):
466468
"""Test that sending keyboard interrupt breaks into pdb."""
467469
synchronizer_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

0 commit comments

Comments
 (0)