From b402a4889b690876c488a1d1ccc6d33add3f69c6 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 25 Apr 2025 13:46:43 +0200 Subject: gh-132912: Skip flaky test in test_remote_pdb (#132924) --- Lib/test/test_remote_pdb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_remote_pdb.py b/Lib/test/test_remote_pdb.py index d3267be..271d974 100644 --- a/Lib/test/test_remote_pdb.py +++ b/Lib/test/test_remote_pdb.py @@ -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) -- cgit v0.12