X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=buildscripts%2Fcoverage.py;h=ed7d0eef255a59078d796e2a7341e25e518df054;hb=27056913b1dd288017d916ef661d9297dfd19b75;hp=68428decd40111526a1432b57636352cd9169cfc;hpb=357d795860915703f0605f5b749b96a51b5ee139;p=lilypond.git diff --git a/buildscripts/coverage.py b/buildscripts/coverage.py index 68428decd4..ed7d0eef25 100644 --- a/buildscripts/coverage.py +++ b/buildscripts/coverage.py @@ -231,7 +231,7 @@ def main (): if options.uncovered: chunks = filter_uncovered (chunks) - chunks = [(c.uncovered_score (), c) for c in chunks] + chunks = [(c.uncovered_score (), c) for c in chunks if c.uncovered_score() > 0] elif options.hotspots: chunks = [((c.coverage_count, -c.length()), c) for c in chunks]