From 9ef67e2f7a13c20ab93375b702092feb58a94f15 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Tue, 30 Sep 2025 22:20:54 +0100 Subject: [PATCH] Bump integration test's timeout on CI to 30s This is to allow ZJIT test against bundled gems on CI. I don't see the same error locally so I'm not touching the default timeout yet. --- test/irb/helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/irb/helper.rb b/test/irb/helper.rb index 17e463e2a..6a0183104 100644 --- a/test/irb/helper.rb +++ b/test/irb/helper.rb @@ -114,7 +114,7 @@ def execute_lines(*lines, conf: {}, main: self, irb_path: nil) class IntegrationTestCase < TestCase LIB = File.expand_path("../../lib", __dir__) - TIMEOUT_SEC = 3 + TIMEOUT_SEC = ENV["CI"] ? 30 : 3 def setup @envs = {}