https://github.com/python/cpython/commit/5148e03f0f0aa4d2ffabf5df120e359f694d87a5 commit: 5148e03f0f0aa4d2ffabf5df120e359f694d87a5 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: brandtbucher <[email protected]> date: 2024-08-22T13:16:52-07:00 summary:
[3.13] GH-121723: Skip test_config_queue_handler_multiprocessing_context in emulated JIT CI (GH-122991) (cherry picked from commit 7b8328b6b33939dfff4606d286b10069a09223dd) Co-authored-by: Bénédikt Tran <[email protected]> files: M Lib/test/test_logging.py M Tools/jit/ignore-tests-emulated-linux.txt diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 8673dbbc767257..1ebe0f623d23a0 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3999,7 +3999,7 @@ def test_config_queue_handler_invalid_config_does_not_create_multiprocessing_man @skip_if_tsan_fork @support.requires_subprocess() @unittest.skipUnless(support.Py_DEBUG, "requires a debug build for testing" - "assertions in multiprocessing") + " assertions in multiprocessing") def test_config_queue_handler_multiprocessing_context(self): # regression test for gh-121723 if support.MS_WINDOWS: diff --git a/Tools/jit/ignore-tests-emulated-linux.txt b/Tools/jit/ignore-tests-emulated-linux.txt index 9e0f13f4050d79..dbb364673b5c1a 100644 --- a/Tools/jit/ignore-tests-emulated-linux.txt +++ b/Tools/jit/ignore-tests-emulated-linux.txt @@ -14,6 +14,7 @@ test.test_init.ProcessPoolForkFailingInitializerTest.test_initializer test.test_logging.ConfigDictTest.test_111615 test.test_logging.ConfigDictTest.test_config_queue_handler test.test_logging.ConfigDictTest.test_multiprocessing_queues +test.test_logging.ConfigDictTest.test_config_queue_handler_multiprocessing_context test.test_os.ForkTests.test_fork_warns_when_non_python_thread_exists test.test_os.TimerfdTests.test_timerfd_initval test.test_os.TimerfdTests.test_timerfd_interval _______________________________________________ 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]
