{# -*- engine: jinja -*- #} {% extends "base.html" %} {% block summary %}
Directory: {{info.get_directory()}}
Date: {{info.date}}
{% 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 content %} {% for entry in all_functions %} {% endfor %}
Function File Line Call count
{{ entry["name"] }} {{ entry["filename"] }} {{ entry["line"] }} {%- if entry["count"] == 0 %} not called {%- else %} called {{ entry["count"] }} time{% if entry["count"] > 1 %}s{% endif %} {%- endif -%}
{% endblock %}