{{ title|escape }}
Results from
checkup
run on {{ date }}
{% for severity in ["critical", "major", "potential"] %}
{{ severity.capitalize() }} issues:
{% if not tests[severity] %}
None found 👍
{% else %}
{% for test in tests[severity] %}
Failed test: {{ test.name }}
{{ test.description }}:
{{ test.message }} {{ test.assertion }}
{{ test.long_descr }}
Test ran in {{ "%.3f" % test.duration }} s.
{% endfor %}
{% endif %}
{% endfor %}