I found myself writing a test for {verbose, true}, {no_output, true} and wonder if we shouldn't issue a warning in this case, for consistency.
I know verbose is for making the info. more, well, verbose, and no_output is probably for CI, but I think having what I was testing (as per above) is confusing, even with the README.
verbose states "more information will be printed"
no_output states "nothing will be printed"
Another way to look at this would be to merge the two options into e.g. verbosity, where we could have none | summary | detail, for example
I found myself writing a test for
{verbose, true}, {no_output, true}and wonder if we shouldn't issue a warning in this case, for consistency.I know
verboseis for making the info. more, well, verbose, andno_outputis probably for CI, but I think having what I was testing (as per above) is confusing, even with the README.verbosestates "more information will be printed"no_outputstates "nothing will be printed"Another way to look at this would be to merge the two options into e.g.
verbosity, where we could havenone | summary | detail, for example