{% extends "base.html" %} {% block breadcrumbs %} › Runs › {{ run.short_id }}{% endblock %} {% block title %}Run {{ run.short_id }} — {{ site_title }}{% endblock %} {% block content %}
{{ run.status }} {{ run.kind }} · {{ run.target }} {% if run.name %}· {{ run.name }}{% endif %}
{{ run.error }}
No parameters recorded.
{% endif %}No metrics recorded.
{% endif %} {% if charts %}| Name | Kind | Size | SHA-256 | Path |
|---|---|---|---|---|
| {{ a.name }} | {{ a.kind }} | {{ a.size_bytes | number }} | {{ (a.sha256 or '')[:12] }} | {{ a.path | short(60) }} |
| Case | Passed | Scores | Output | Expected | Trace |
|---|---|---|---|---|---|
| {{ r.case_id }} | {{ 'pass' if r.passed else 'fail' }} | {% for k, v in (r.scores or {}).items() %}{{ k }}={{ v | number }} {% endfor %} | {{ r.output | short(60) }} | {{ r.expected | short(40) }} | {% if r.trace_uuid %}{{ r.trace_uuid[:8] }}{% else %}—{% endif %} |