{% if runs %}
{% for item in runs %} {% set run = item.run %} {% set pct = (run.pass_rate * 100) | round | int %} {% if pct >= 80 %}{% set rate_cls = "green" %} {% elif pct >= 60 %}{% set rate_cls = "yellow" %} {% else %}{% set rate_cls = "red" %}{% endif %} {% endfor %}
Run At Suite Pass Rate Passed / Total Cost Duration Flags Actions
{{ run.run_at.strftime('%Y-%m-%d %H:%M') if run.run_at else '—' }} {{ run.suite_name }} {{ pct }}% {{ run.passed }} / {{ run.total_cases }} ${{ '%.4f' | format(run.total_cost_usd) }} {{ '%.2f' | format(run.avg_duration_seconds) }}s {% if item.regression %} regression {% endif %} Export
{% else %}

No eval runs recorded yet.

{% endif %}