-
-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[anecdotal/opinion] report: interspersed branch / uncovered lines are much less readable than 4.x era #955
Labels
Milestone
Comments
I think this enhancement I just suggested would greatly improve the situation for you #1065 |
Out of curiosity I looked through your output, none of the branch reports there are adding useful information and they could all be omitted leaving |
This is now released as part of coverage 5.5. |
This was referenced Mar 12, 2021
This was referenced May 21, 2021
1 task
This was referenced Jun 6, 2021
1 task
This was referenced Jul 15, 2021
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in coverage 5.x (or at least, that's when I noticed it) the missing branches are now interspersed with missing lines in the
coverage report
terminal displayHere's an example:
prior to coverage 5, the output looked like this:
I prefer the older output because:
##-##
looks very much like##->##
)A hacky, and far-from-perfect workaround that I'm using right now is
coverage report | sed -r 's/[0-9]+->[0-9]+//g;s/,( ,)+/,/g'
which (mostly) hides the missed branches until I'm ready to work on the missing branch coverageThe text was updated successfully, but these errors were encountered: