gh-132912: Skip flaky test in test_remote_pdb (#132924)

This commit is contained in:
Victor Stinner 2025-04-25 13:46:43 +02:00 committed by GitHub
parent 25e49841e3
commit b402a4889b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)