[Python-checkins] gh-93162: test_config_queue_handler requires threading (GH-93572)

tiran webhook-mailer at python.org
Tue Jun 7 06:34:12 EDT 2022


https://github.com/python/cpython/commit/cdb73aefec74720de9df47143fe8009c2ffdeadc
commit: cdb73aefec74720de9df47143fe8009c2ffdeadc
branch: main
author: Christian Heimes <christian at python.org>
committer: tiran <christian at python.org>
date: 2022-06-07T12:34:08+02:00
summary:

gh-93162: test_config_queue_handler requires threading (GH-93572)

files:
M Lib/test/test_logging.py

diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index da298f258f597..3edb52d6c87bb 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -3583,6 +3583,7 @@ def do_queuehandler_configuration(self, qspec, lspec):
             else:
                 self.addCleanup(os.remove, fn)
 
+    @threading_helper.requires_working_threading()
     def test_config_queue_handler(self):
         q = CustomQueue()
         dq = {



More information about the Python-checkins mailing list