You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
For test run outputs, I set skip_covered = true in my .coveragerc (for example here). I do this to avoid the terminal spew of the 50+ 100% covered files.
However, for html outputs, I'd still like to have files included when running coverage html, even if they are 100% covered.
Describe the solution you'd like
I think the simplest solution would be to add --no-skip-covered options to the various coverage html / coverage report entrypoints which would override the --skip-covered option.
Describe alternatives you've considered
Not really seriously considered, but sed -i /skip_covered/d .coveragerc before running coverage html -- pretty haxy though ;)
Additional context
I'm mostly trying to target automated CI here, in particular azure pipelines coverage reporting
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
For test run outputs, I set
skip_covered = true
in my.coveragerc
(for example here). I do this to avoid the terminal spew of the 50+ 100% covered files.However, for html outputs, I'd still like to have files included when running
coverage html
, even if they are 100% covered.Describe the solution you'd like
I think the simplest solution would be to add
--no-skip-covered
options to the variouscoverage html
/coverage report
entrypoints which would override the--skip-covered
option.Describe alternatives you've considered
Not really seriously considered, but
sed -i /skip_covered/d .coveragerc
before runningcoverage html
-- pretty haxy though ;)Additional context
I'm mostly trying to target automated CI here, in particular azure pipelines coverage reporting
The text was updated successfully, but these errors were encountered: