{# -*- engine: jinja -*- #} {% extends "base.html" %} {% block summary %}
{% if (COVERAGE_MED != LINE_COVERAGE_MED) or (COVERAGE_HIGH != LINE_COVERAGE_HIGH) %} {% endif %} {% if (COVERAGE_MED != BRANCH_COVERAGE_MED) or (COVERAGE_HIGH != BRANCH_COVERAGE_HIGH) %} {% endif %}
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 %}
{% if SHOW_DECISION %} {% 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}}%
{% endblock %} {% block navigation %} {% if info.details %} List of functions {% endif %} {% endblock %} {% block content %} {% if SHOW_DECISION %} {% endif %} {% for row in info.files %} {% if SHOW_DECISION %} {% endif %} {% endfor %}
File Lines Functions BranchesDecisions
{% if row.link is not none %} {{row.filename}} {% else %} {{row.filename}} {% endif %} {{row.lines.coverage}} {{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}}{{row.decisions.coverage}}% {{row.decisions.exec}} / {{row.decisions.total}}
{% endblock %}