{# -*- engine: jinja -*- #}
{% extends "base.html" %}
{% block summary %}
Directory: |
{{info.get_directory()}} |
Date: |
{{info.date}} |
Legend: |
low: >= 0%
{% if COVERAGE_MED != COVERAGE_HIGH %}
medium: >= {{COVERAGE_MED}}%
{% endif %}
{% if COVERAGE_HIGH < 100 %}
high: >= {{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}}% |
{% if SHOW_DECISION %}
Decisions: |
{{info.decisions.exec}} |
{{info.decisions.total}} |
{{info.decisions.coverage}}% |
{% endif %}
{% endblock %}
{% block content %}
{% endblock %}