{% extends "base.html" %} {% import "macros.html" as m %} {% block title %}Checks - {{ pack.pack }}{% endblock %} {% block content %}

Stored checks against {{ release_id }}

The result and the time are written into checks.yaml and shown on the pack card.

{% for row in results %}

{{ m.verdict(row.passed) }} {{ row.check_id }} {{ row.tool }}

{{ row.title }}

{% for item in row.expectations %} {% endfor %}
ExpectationResultDetail
{{ item.description }}{{ m.verdict(item.passed) }} {{ item.detail }}
the answer
{{ row.answer | as_json }}
{% endfor %}

Back to the sandbox

{% endblock %}