diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-08-06 07:05:50 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-08-06 07:05:50 -0400 |
commit | a99b27f730a262585514cc358213aa5d4c350c11 (patch) | |
tree | 114c3fb919f932c293ed7304be68b13f1332eb78 /coverage/htmlfiles | |
parent | a17f6eea453197dc6c013410c4df9cf9a28fec42 (diff) | |
download | python-coveragepy-git-a99b27f730a262585514cc358213aa5d4c350c11.tar.gz |
feat: mention skipped file counts in the HTML report. #1163
Diffstat (limited to 'coverage/htmlfiles')
-rw-r--r-- | coverage/htmlfiles/index.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 983db061..3654d66a 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -104,6 +104,13 @@ <p id="no_rows"> No items found using the specified filter. </p> + + {% if skipped_covered_msg %} + <p>{{ skipped_covered_msg }}</p> + {% endif %} + {% if skipped_empty_msg %} + <p>{{ skipped_empty_msg }}</p> + {% endif %} </div> <div id="footer"> |