diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-06-18 17:42:12 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-06-19 08:54:22 -0400 |
commit | e126d4720a4abad33a772734e0a0b40403b974d2 (patch) | |
tree | 098224fea6d35158f275b1053fd1debfa889a968 /coverage/htmlfiles | |
parent | 8c767f2888a931e7eaad942e875e127a776e9456 (diff) | |
download | python-coveragepy-git-e126d4720a4abad33a772734e0a0b40403b974d2.tar.gz |
Split HtmlReporter to get at data
Diffstat (limited to 'coverage/htmlfiles')
-rw-r--r-- | coverage/htmlfiles/pyfile.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index 72cf77c9..d4a86ff3 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -33,12 +33,12 @@ <h2 class="stats"> {{nums.n_statements}} statements - <span class="{{c_run}} shortkey_r button_toggle_run">{{nums.n_executed}} run</span> - <span class="{{c_mis}} shortkey_m button_toggle_mis">{{nums.n_missing}} missing</span> - <span class="{{c_exc}} shortkey_x button_toggle_exc">{{nums.n_excluded}} excluded</span> + <span class="{{category.run}} shortkey_r button_toggle_run">{{nums.n_executed}} run</span> + <span class="{{category.mis}} shortkey_m button_toggle_mis">{{nums.n_missing}} missing</span> + <span class="{{category.exc}} shortkey_x button_toggle_exc">{{nums.n_excluded}} excluded</span> {% if has_arcs %} - <span class="{{c_par}} shortkey_p button_toggle_par">{{nums.n_partial_branches}} partial</span> + <span class="{{category.par}} shortkey_p button_toggle_par">{{nums.n_partial_branches}} partial</span> {% endif %} </h2> </div> |