{% extends "base.html" %} {% import "macros.html" as ui %} {% block main %}

Project coverage

{{ "%.0f"|format(report.total_percentage) }}%
{{ ui.coverage_bar( report.total_percentage, report_status, "%.1f%% total coverage"|format(report.total_percentage) ) }}
statements
{{ "{:,}".format(report.total_statements) }}
missing
{{ "{:,}".format(report.total_missing) }}
files
{{ "{:,}".format(report.files|length) }}

File coverage

{% for group in health_groups %} {% endfor %}
{% for group in health_groups %} {{ group.count }} {{ group.label }} {% endfor %}
{% if risk_rows %}

Directories by missing lines

{% for row in risk_rows %} {{ ui.coverage_row(row) }} {% endfor %}
Directory Statements Missing Coverage
{% endif %}

Project root

{% for row in project_rows %} {{ ui.coverage_row(row) }} {% endfor %}
Name Statements Missing Coverage
{% endblock %}