Extend the default timeout of parallel testing to one hour

This commit is contained in:
Yusuke Endoh 2024-08-06 16:59:24 +09:00
parent 65e3717db7
commit 24d46a6781

View File

@ -282,7 +282,7 @@ module Test
options[:parallel] ||= 256 # number of tokens to acquire first
end
end
@worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 600)
@worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 3600)
super
end