Skip to content

Commit

Permalink
Merge pull request #663 from basil/fail-fast
Browse files Browse the repository at this point in the history
Fix `--no-fail-fast` option
  • Loading branch information
imonteroperez committed May 24, 2024
2 parents 979f0ef + 90aa576 commit fa085a2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,11 @@ public class PluginCompatTesterCli implements Callable<Integer> {
@CommandLine.Option(
names = "--fail-fast",
negatable = true,
defaultValue = "true",
fallbackValue = "true",
description =
"If multiple plugins are specified, fail the overall run after the first plugin failure occurs rather than continuing to test other plugins.")
private boolean failFast = true;
private boolean failFast;

@Override
public Integer call() throws PluginCompatibilityTesterException {
Expand Down

0 comments on commit fa085a2

Please sign in to comment.