88b68c0
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
88b68c0
From: Fedora Python maintainers <python-devel@lists.fedoraproject.org>
88b68c0
Date: Wed, 22 Jul 2020 16:37:48 +0200
88b68c0
Subject: [PATCH] 00203-disable-threading-test-koji.patch
88b68c0
88b68c0
test_threading fails in koji dues to it's handling of signals
88b68c0
---
88b68c0
 Lib/test/test_threading.py | 1 +
88b68c0
 1 file changed, 1 insertion(+)
88b68c0
88b68c0
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
88b68c0
index 4b75ea67782..7e55c8bc2fc 100644
88b68c0
--- a/Lib/test/test_threading.py
88b68c0
+++ b/Lib/test/test_threading.py
88b68c0
@@ -988,6 +988,7 @@ class ThreadingExceptionTests(BaseTestCase):
e32ce18
         self.assertIn("ZeroDivisionError", err)
e32ce18
         self.assertNotIn("Unhandled exception", err)
e32ce18
 
e32ce18
+    @unittest.skip('Fails in Koji due to mishandled signals')
e32ce18
     def test_print_exception_stderr_is_none_1(self):
e32ce18
         script = r"""if True:
e32ce18
             import sys