{# -*- engine: jinja -*- #} {% extends "base.html" %} {% block summary %}
Directory: | {{info.get_directory()}} |
---|---|
Date: | {{info.date}} |
Coverage: | low: ≥ 0% {% if COVERAGE_MED != COVERAGE_HIGH %} medium: ≥ {{COVERAGE_MED}}% {% endif %} {% if COVERAGE_HIGH < 100 %} high: ≥ {{COVERAGE_HIGH}}% {% else %} high: = 100% {% endif %} |
Lines: | low: ≥ 0% {% if LINE_COVERAGE_MED != LINE_COVERAGE_HIGH %} medium: ≥ {{LINE_COVERAGE_MED}}% {% endif %} {% if LINE_COVERAGE_HIGH < 100 %} high: ≥ {{LINE_COVERAGE_HIGH}}% {% else %} high: = 100% {% endif %} |
Branches: | low: ≥ 0% {% if BRANCH_COVERAGE_MED != BRANCH_COVERAGE_HIGH %} medium: ≥ {{BRANCH_COVERAGE_MED}}% {% endif %} {% if BRANCH_COVERAGE_HIGH < 100 %} high: ≥ {{BRANCH_COVERAGE_HIGH}}% {% else %} high: = 100% {% endif %} |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | {{info.lines.exec}} | {{info.lines.total}} | {{info.lines.coverage}}% |
Functions: | {{info.functions.exec}} | {{info.functions.total}} | {{info.functions.coverage}}% |
Branches: | {{info.branches.exec}} | {{info.branches.total}} | {{info.branches.coverage}}% |
Decisions: | {{info.decisions.exec}} | {{info.decisions.total}} | {{info.decisions.coverage}}% |
File | Lines | Functions | Branches | {% if SHOW_DECISION %}Decisions | {% endif %}|||||
---|---|---|---|---|---|---|---|---|---|
{% if row.link is not none %} {{row.filename}} {% else %} {{row.filename}} {% endif %} |
|
{{row.lines.coverage}}% | {{row.lines.exec}} / {{row.lines.total}} | {{row.functions.coverage}}% | {{row.functions.exec}} / {{row.functions.total}} | {{row.branches.coverage}}% | {{row.branches.exec}} / {{row.branches.total}} | {% if SHOW_DECISION %}{{row.decisions.coverage}}% | {{row.decisions.exec}} / {{row.decisions.total}} | {% endif %}