Skip to content

Commit d43c3d7

Browse files
authored
Bump integration test's timeout on CI to 30s (#1122)
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.
1 parent c4cae48 commit d43c3d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/irb/helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def execute_lines(*lines, conf: {}, main: self, irb_path: nil)
114114

115115
class IntegrationTestCase < TestCase
116116
LIB = File.expand_path("../../lib", __dir__)
117-
TIMEOUT_SEC = 3
117+
TIMEOUT_SEC = ENV["CI"] ? 30 : 3
118118

119119
def setup
120120
@envs = {}

0 commit comments

Comments
 (0)