Skip to content

Commit 606f18c

Browse files
authored
Skip nested IRB tests in Ruby Core CI (#675)
Sometimes the subprocess gets stuck in the nested IRB session until timed out. We don't have enough information to debug it yet, so skip the tests to unblock CI.
1 parent 0fef0ae commit 606f18c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/irb/test_history.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,14 @@ def with_temp_stdio
210210
end
211211

212212
class NestedIRBHistoryTest < IntegrationTestCase
213+
def setup
214+
super
215+
216+
if ruby_core?
217+
omit "This test works only under ruby/irb"
218+
end
219+
end
220+
213221
def test_history_saving_with_nested_sessions
214222
write_history ""
215223

0 commit comments

Comments
 (0)