File timeout.patch of Package python-mailman
Index: mailman-3.3.10/src/mailman/bin/tests/test_master.py
===================================================================
--- mailman-3.3.10.orig/src/mailman/bin/tests/test_master.py
+++ mailman-3.3.10/src/mailman/bin/tests/test_master.py
@@ -214,14 +214,14 @@ Exiting.
# bounded in time.
start = time.time()
mark = LogFileMark('mailman.runner')
- while old_kid in set(m._kids) and time.time() - start < 10:
+ while old_kid in set(m._kids) and time.time() - start < 20:
# We must not send signals in rapid succession, because
# the behavior of signals arriving while the process is in
# the signal handler varies. Linux implements System V
# semantics, which means the default signal action is
# restored for the duration of the signal handler. In
# this case it means to terminate the process.
- time.sleep(1)
+ time.sleep(2)
m._sigusr1_handler(None, None)
# Check if the runner got the signal.