https://github.com/python/cpython/commit/b402a4889b690876c488a1d1ccc6d33add3f69c6
commit: b402a4889b690876c488a1d1ccc6d33add3f69c6
branch: main
author: Victor Stinner <[email protected]>
committer: vstinner <[email protected]>
date: 2025-04-25T11:46:43Z
summary:
gh-132912: Skip flaky test in test_remote_pdb (#132924)
files:
M Lib/test/test_remote_pdb.py
diff --git a/Lib/test/test_remote_pdb.py b/Lib/test/test_remote_pdb.py
index d3267be79ece0e..271d974f39bdc0 100644
--- a/Lib/test/test_remote_pdb.py
+++ b/Lib/test/test_remote_pdb.py
@@ -462,6 +462,8 @@ def test_breakpoints(self):
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)
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]