From cdb73aefec74720de9df47143fe8009c2ffdeadc Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 7 Jun 2022 12:34:08 +0200 Subject: gh-93162: test_config_queue_handler requires threading (GH-93572) --- 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 da298f2..3edb52d 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3583,6 +3583,7 @@ class ConfigDictTest(BaseTest): else: self.addCleanup(os.remove, fn) + @threading_helper.requires_working_threading() def test_config_queue_handler(self): q = CustomQueue() dq = { -- cgit v0.12