Skip to content

Commit

Permalink
Skip nested IRB tests in Ruby Core CI (#675)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
st0012 authored Aug 9, 2023
1 parent 0fef0ae commit 606f18c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/irb/test_history.rb
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,14 @@ def with_temp_stdio
end

class NestedIRBHistoryTest < IntegrationTestCase
def setup
super

if ruby_core?
omit "This test works only under ruby/irb"
end
end

def test_history_saving_with_nested_sessions
write_history ""

Expand Down

0 comments on commit 606f18c

Please sign in to comment.