File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ PLATFORMS
189
189
java
190
190
ruby
191
191
universal-java-1.8
192
+ universal-java-11
192
193
193
194
DEPENDENCIES
194
195
activesupport (~> 6.1 )
Original file line number Diff line number Diff line change 35
35
36
36
Before ( "@process_fork" ) do
37
37
# Process.fork is NotImplementedError in jruby
38
- skip_this_scenario if defined? ( RUBY_ENGINE ) && RUBY_ENGINE == "jruby"
38
+ skip_this_scenario if jruby?
39
+ end
40
+
41
+ Before ( "@no_jruby" ) do
42
+ skip_this_scenario if jruby?
43
+ end
44
+
45
+ def jruby?
46
+ defined? ( RUBY_ENGINE ) && RUBY_ENGINE == "jruby"
39
47
end
40
48
41
49
Aruba . configure do |config |
Original file line number Diff line number Diff line change 1
- @rspec
1
+ # deactivating on JRuby due to https://github.com/jruby/jruby/issues/8200
2
+ @rspec @no_jruby
2
3
Feature:
3
4
4
5
Running SimpleCov with verbosity enabled does not yield warnings.
You can’t perform that action at this time.
0 commit comments