]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-132912: Skip flaky test in test_remote_pdb (#132924)
authorVictor Stinner <vstinner@python.org>
Fri, 25 Apr 2025 11:46:43 +0000 (13:46 +0200)
committerGitHub <noreply@github.com>
Fri, 25 Apr 2025 11:46:43 +0000 (11:46 +0000)
Lib/test/test_remote_pdb.py

index d3267be79ece0e5bd43b0c63d7b26589d4247138..271d974f39bdc05ef3e891ce289165c0855bd972 100644 (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)