I have an existing project that I would read the coverage report with my human eyes. This project has skip_covered = true in the configuration, which causes files that are 100% covered to not show up in the report, thus an error when I try :HighlightCoverage.
How would you feel about a PR to add --no-skip-covered to the invocation inside run_coverage_report, or in the default provided by find_coverage_script in case the script isn't just coverage and people would like to override to remove the flag?
I have an existing project that I would read the coverage report with my human eyes. This project has
skip_covered = true
in the configuration, which causes files that are 100% covered to not show up in the report, thus an error when I try:HighlightCoverage
.How would you feel about a PR to add
--no-skip-covered
to the invocation insiderun_coverage_report
, or in the default provided byfind_coverage_script
in case the script isn't just coverage and people would like to override to remove the flag?