We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9612a52 commit 2069071Copy full SHA for 2069071
gcovr-templates/html/source_page.summary.html
@@ -9,9 +9,11 @@ <h2 class="source-filename">{{filename}}</h2>
9
<span class="stat {{functions.class}}">
10
<strong>{{functions.coverage}}%</strong> Functions ({{functions.exec}}/{{functions.total}})
11
</span>
12
+ {% if info.branches.total > info.branches.excluded %}
13
<span class="stat {{branches.class}}">
- <strong>{{branches.coverage}}%</strong> Branches ({{branches.exec}}/{{branches.total}})
14
+ <strong>{{branches.coverage}}%</strong> Branches ({{branches.exec}}/{{branches.total - branches.excluded}})
15
16
+ {% endif %}
17
</div>
18
19
0 commit comments