File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -301,15 +301,15 @@ def test_parent_process(self):
301
301
target = self ._test_create_grandchild_process , args = (wconn , ))
302
302
p .start ()
303
303
304
- if not rconn .poll (timeout = 5 ):
304
+ if not rconn .poll (timeout = 60 ):
305
305
raise AssertionError ("Could not communicate with child process" )
306
306
parent_process_status = rconn .recv ()
307
307
self .assertEqual (parent_process_status , "alive" )
308
308
309
309
p .terminate ()
310
310
p .join ()
311
311
312
- if not rconn .poll (timeout = 5 ):
312
+ if not rconn .poll (timeout = 60 ):
313
313
raise AssertionError ("Could not communicate with child process" )
314
314
parent_process_status = rconn .recv ()
315
315
self .assertEqual (parent_process_status , "not alive" )
@@ -318,7 +318,7 @@ def test_parent_process(self):
318
318
def _test_create_grandchild_process (cls , wconn ):
319
319
p = cls .Process (target = cls ._test_report_parent_status , args = (wconn , ))
320
320
p .start ()
321
- time .sleep (100 )
321
+ time .sleep (300 )
322
322
323
323
@classmethod
324
324
def _test_report_parent_status (cls , wconn ):
You can’t perform that action at this time.
0 commit comments