diff options
| author | Yusuke Endoh <mame@ruby-lang.org> | 2024-08-06 14:19:11 +0900 |
|---|---|---|
| committer | Yusuke Endoh <mame@ruby-lang.org> | 2024-08-06 15:00:12 +0900 |
| commit | 30be7fb85ddcb59b531f22b7627e77624ef05c4e (patch) | |
| tree | f502e3bed6d13436f5b5b7b51d5f54d91d0c2e07 /tool | |
| parent | 3005ed6816894c8f6585dd32b5a1aa884aaa5b1e (diff) | |
Extend the default timeout of parallel testing
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11311
Diffstat (limited to 'tool')
| -rw-r--r-- | tool/lib/test/unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb index be619e1445..a9c3b9b7ec 100644 --- a/tool/lib/test/unit.rb +++ b/tool/lib/test/unit.rb @@ -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] || 180) + @worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 600) super end |
