mirror of
https://github.com/python/cpython.git
synced 2025-10-03 05:35:59 +00:00
gh-132912: Skip flaky test in test_remote_pdb (#132924)
This commit is contained in:
parent
25e49841e3
commit
b402a4889b
1 changed files with 2 additions and 0 deletions
|
@ -462,6 +462,8 @@ class PdbConnectTestCase(unittest.TestCase):
|
|||
self.assertIn("Function returned: 42", stdout)
|
||||
self.assertEqual(process.returncode, 0)
|
||||
|
||||
# gh-132912: The test fails randomly
|
||||
@unittest.skipIf(True, "flaky test")
|
||||
def test_keyboard_interrupt(self):
|
||||
"""Test that sending keyboard interrupt breaks into pdb."""
|
||||
synchronizer_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue