We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df355d8 commit bc43cddCopy full SHA for bc43cdd
tests/_test_process_executor.py
@@ -112,8 +112,9 @@ def test_shutdown_with_pickle_error(self):
112
113
def test_shutdown_with_sys_exit_at_pickle(self):
114
self.executor.shutdown()
115
- with self.executor_type(max_workers=4) as e:
116
- e.submit(id, ExitAtPickle())
+ for i in range(30):
+ with self.executor_type(max_workers=4) as e:
117
+ e.submit(id, ExitAtPickle())
118
119
def test_interpreter_shutdown(self):
120
# Free resources to avoid random timeout in CI
0 commit comments