Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Disable picocli ansi when testing (#973)
Browse files Browse the repository at this point in the history
  • Loading branch information
Errorific authored Feb 26, 2019
1 parent b8c16cf commit 2091405
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ protected CommandLine.Model.CommandSpec parseCommand(final String... args) {
}

protected CommandLine.Model.CommandSpec parseCommand(final InputStream in, final String... args) {
// turn off ansi usage globally in picocli
System.setProperty("picocli.ansi", "false");

final TestPantheonCommand pantheonCommand =
new TestPantheonCommand(
Expand Down

0 comments on commit 2091405

Please sign in to comment.