summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-03-22 07:36:56 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-03-22 07:36:56 (GMT)
commit40b6907b377cfc8c4743007894364ac8c5a1c113 (patch)
tree845e500703bfa4fb89e591d44aff82c182e19eee /Lib/test
parent97f5de01adf993aee17dcd26e22ae421d013f372 (diff)
downloadcpython-40b6907b377cfc8c4743007894364ac8c5a1c113.zip
cpython-40b6907b377cfc8c4743007894364ac8c5a1c113.tar.gz
cpython-40b6907b377cfc8c4743007894364ac8c5a1c113.tar.bz2
Raise the timeout in test_multiprocessing_* for slow buildbots (GH-12489)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/_test_multiprocessing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index a860d9d..f4239ba 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -70,7 +70,7 @@ except ImportError:
#
# Timeout to wait until a process completes
-TIMEOUT = 30.0 # seconds
+TIMEOUT = 60.0 # seconds
def latin(s):
return s.encode('latin')