From 12811eb40c06c8bf3b1938eafd614947eef7b280 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Sun, 4 Jan 2026 18:54:23 -0500 Subject: [PATCH] Skip flaky test in test_logging --- Lib/test/test_logging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 529cb2dc2..752054b72 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -4058,6 +4058,7 @@ class ConfigDictTest(BaseTest): # log a message (this creates a record put in the queue) logging.getLogger().info(message_to_log) + @unittest.skip('TODO: RUSTPYTHON, flaky EOFError') # TODO: RUSTPYTHON - SemLock not implemented on Windows @unittest.expectedFailureIfWindows("TODO: RUSTPYTHON") @skip_if_tsan_fork