Add a new verbosity level to boa_tester
to reduce the output in -vv
mode
#1643
Labels
E-Easy
Easy
enhancement
New feature or request
good first issue
Good for newcomers
Hacktoberfest
Hacktoberfest 2021 - https://hacktoberfest.digitalocean.com
Milestone
Currently we have 3 vervosity modes in the
boa_tester
:0
: when no-v
flag is provided, we just show one colored dot per test, indicating if it passed or not, and the final results1
: when-v
is provided, we show information on each test suite that ran, along with some extra information messages2
: when-vv
is provided, it will give information on each test being run, along with information on the output in case it failed.The issue is that there is no way of knowing the failing tests without getting the full output of the test, which can make the output difficult to read if you are only trying to find the failing test.
The idea behind this enhancement proposal is to add a new verbosity level,
-vvv
, that would include the output of failing tests that is now shown in-vv
.This is controlled in here. The idea is to change that verbosity comparison to
> 2
, so that it will only be shown when-vvv
(or more) is provided.The text was updated successfully, but these errors were encountered: