Skip to content

Commit 146fd49

Browse files
committed
Add -Pall to do all
1 parent 5cd8089 commit 146fd49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
run: ./mvnw -ntp install -B -Dmaven.test.skip -Dinvoker.skip
3333

3434
- name: Run tests
35-
run: ./mvnw -ntp verify -B -Pintegration-test
35+
run: ./mvnw -ntp verify -B -Pintegration-test -Pall

ruby-tools/src/test/java/de/saumya/mojo/ruby/script/AbstractLauncherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void should_execute_command_with_args_and_return_in_file() throws IOExcep
6060
// -v line
6161
assertThat(lines[0]).startsWith("jruby 9.4.13.0 (3.1.4)");
6262
// --help first
63-
// JRuby 9.4.0.0 thru 9.4.5.0 always emit the escape sequence here (jruby/jruby#7864)
63+
// JRuby 9.4.0.0 thru 9.4.13.0 always emit the escape sequence here (jruby/jruby#7864)
6464
if (lines[1].startsWith("\033[1m")) {
6565
assertThat(lines[1]).contains("jruby [switches] [--] [programfile] [arguments]");
6666
} else {

0 commit comments

Comments
 (0)