Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit eaa271f

Browse files
committed
Skip broken specs on JRuby
1 parent cb1c8f1 commit eaa271f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

spec/integration/bisect_spec.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ def bisect(cli_args, expected_status=nil)
1515
normalize_durations(formatter_output.string)
1616
end
1717

18+
before do
19+
if RSpec::Support::Ruby.jruby? && RSpec::Support::Ruby.jruby_version == '9.1.17.0'
20+
skip "These specs are currently broken on JRuby 9.1.17.0"
21+
end
22+
end
23+
1824
context "when a load-time problem occurs while running the suite" do
1925
it 'surfaces the stdout and stderr output to the user' do
2026
output = bisect(%w[spec/rspec/core/resources/fail_on_load_spec.rb_], 1)

0 commit comments

Comments
 (0)