From: Victor Stinner Date: Fri, 25 Apr 2025 11:46:43 +0000 (+0200) Subject: gh-132912: Skip flaky test in test_remote_pdb (#132924) X-Git-Tag: v3.14.0b1~294 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b402a4889b690876c488a1d1ccc6d33add3f69c6;p=thirdparty%2FPython%2Fcpython.git gh-132912: Skip flaky test in test_remote_pdb (#132924) --- diff --git a/Lib/test/test_remote_pdb.py b/Lib/test/test_remote_pdb.py index d3267be79ece..271d974f39bd 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)