Support for text output format
Closed this issue · 2 comments
crocodele commented
Thanks for creating this tool!
Currently --format
has two options: console
(default) and junit
. The console option uses colors for formatting, which is nice when running in the terminal, but can be problematic e.g. in CI and PR comments.
Would you consider having a text
option that is otherwise much like console
, but doesn't use color formatting?
janedbal commented
I think more common ways are:
- autodetect if colors can be used
--no-ansi
--no-color
- https://no-color.org/
I'll probably pick one of those solutions.
crocodele commented
--no-color
or NO_COLOR=1
would be awesome. 👍