diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-13 22:14:57 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-13 22:14:57 -0500 |
| commit | 9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21 (patch) | |
| tree | d4dc63b5974b040225223e6774828dd15ddd4687 /coverage/htmlfiles/index.html | |
| parent | 99d1f54a583e5ac22742dada31a980b3145ce528 (diff) | |
| download | python-coveragepy-9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21.tar.gz | |
Reports now emphasize missed lines over executed lines, since those are more helpful for directing developers to improved test coverage.
Diffstat (limited to 'coverage/htmlfiles/index.html')
| -rw-r--r-- | coverage/htmlfiles/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 700ff8b..9b8214f 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -28,11 +28,11 @@ <tr class='tablehead' title='Click to sort'> <th class='name left headerSortDown'>Module</th> <th>statements</th> - <th>run</th> + <th>missing</th> <th>excluded</th> {% if arcs %} <th>branches</th> - <th>br exec</th> + <th>partial</th> {% endif %} <th class='right'>coverage</th> </tr> @@ -42,11 +42,11 @@ <tr class='total'> <td class='name left'>Total</td> <td>{{totals.n_statements}}</td> - <td>{{totals.n_executed}}</td> + <td>{{totals.n_missing}}</td> <td>{{totals.n_excluded}}</td> {% if arcs %} <td>{{totals.n_branches}}</td> - <td>{{totals.n_executed_branches}}</td> + <td>{{totals.n_missing_branches}}</td> {% endif %} <td class='right'>{{totals.pc_covered|format_pct}}%</td> </tr> @@ -56,11 +56,11 @@ <tr class='file'> <td class='name left'><a href='{{file.html_filename}}'>{{file.cu.name}}</a></td> <td>{{file.nums.n_statements}}</td> - <td>{{file.nums.n_executed}}</td> + <td>{{file.nums.n_missing}}</td> <td>{{file.nums.n_excluded}}</td> {% if arcs %} <td>{{file.nums.n_branches}}</td> - <td>{{file.nums.n_executed_branches}}</td> + <td>{{file.nums.n_missing_branches}}</td> {% endif %} <td class='right'>{{file.nums.pc_covered|format_pct}}%</td> </tr> |
