Skip to content

Commit ba49e2f

Browse files
authored
Merge pull request #515 from aycabta/use-bundle-exec-for-rake-test
Use "bundle exec" in .travis.yml for JRuby test
2 parents 9d25eea + a67b8bc commit ba49e2f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,4 @@ rvm:
1414
env:
1515
global:
1616
NOBENCHMARK=1
17-
script: rake
18-
matrix:
19-
allow_failures:
20-
- rvm: jruby-9.1.13.0
17+
script: bundle exec rake

test/test_rdoc_markup_to_html.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,9 @@ def test_accept_verbatim_parseable_error
452452
end
453453

454454
def test_accept_verbatim_nl_after_backslash
455+
# TODO: Remove "skip" after the issue is resolved: https://github.com/jruby/jruby/issues/4787
456+
# This "skip" is for strange behavior around escaped newline on JRuby
457+
skip if defined? JRUBY_VERSION
455458
verb = @RM::Verbatim.new("a = 1 if first_flag_var and \\\n", " this_is_flag_var\n")
456459

457460
@to.start_accepting

0 commit comments

Comments
 (0)