We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab2dcc7 + 4440007 commit 8d0f4c9Copy full SHA for 8d0f4c9
tool/lib/test/unit/parallel.rb
@@ -52,11 +52,14 @@ def _run_suite(suite, type) # :nodoc:
52
# Thread for making sure the parallel worker is not stuck on one test
53
# for too long.
54
@timer_thread = Thread.new do
55
- timeout = 8 * 60 # 8 minutes
+ timeout = 60 * 60 # 50 minutes
56
while true
57
slept_for = sleep(timeout)
58
if slept_for >= timeout
59
- _report("p", "Spent #{timeout}s running #{@current_test}\n")
+ # _report() doesn't print anything in the CI output
60
+ # It would be useful to know which test in failing
61
+ #_report("p", "Spent #{timeout}s running #{@current_test}\n")
62
+ puts("Spent #{timeout}s running #{@current_test}\n")
63
exit 2
64
end
65
0 commit comments