{# -*- engine: jinja -*- #}
{% 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_CONDITION_COVERAGE %} {% endif %} {% if SHOW_DECISION %} {% endif %} {% if SHOW_CALLS %} {% endif %}
Coverage Exec Excl Total
Lines: {{info.lines.coverage}}% {{info.lines.exec}} {{info.lines.excluded}} {{info.lines.total}}
Functions: {{info.functions.coverage}}% {{info.functions.exec}} {{info.functions.excluded}} {{info.functions.total}}
Branches: {{info.branches.coverage}}% {{info.branches.exec}} {{info.branches.excluded}} {{info.branches.total}}
Conditions: {{info.conditions.coverage}}% {{info.conditions.exec}} {{info.conditions.excluded}} {{info.conditions.total}}
Decisions: {{info.decisions.coverage}}% {{info.decisions.exec}} - {{info.decisions.total}}
Calls: {{info.calls.coverage}}% {{info.calls.exec}} {{info.calls.excluded}} {{info.calls.total}}