{% if group_context %}
{{ group_context.name or ('Group ' ~ group_context.hash) }} Test Runs
Monitor and manage your test executions
{% else %}
Test Runs
Monitor and manage your test executions
{% endif %}
{% if group_context %}
{% endif %}
{% if not runs_index %}
| Status | Run | Metadata | Actions |
|---|---|---|---|
|
{% if run.status.lower() == 'running' %}
RUNNING
{% elif run.status.lower() == 'aborted' %}
ABORTED
{% else %}
{% if run.skipped_count > 0 and run.passed_count == 0 and run.failed_count == 0 and (run.error_count is not defined or run.error_count == 0) %}
SKIPPED
{% elif run.error_count is defined and run.error_count > 0 %}
ERROR
{% elif run.failed_count > 0 %}
FAILED
{% else %}
PASSED
{% endif %}
{% endif %}
{% if run.passed_count > 0 %}
{{ run.passed_count }}
{% endif %}
{% if run.skipped_count > 0 %}
{{ run.skipped_count }}
{% endif %}
{% if run.failed_count > 0 %}
{{ run.failed_count }}
{% endif %}
{% if run.error_count is defined and run.error_count > 0 %}
{{ run.error_count }}
{% endif %}
|
{{ run.run_name }}{% if run.group and (run.group.name or run.group.hash) and not group_context %}
Group:
{% if run.group.hash %}
{{ run.group.name or ('Group ' ~ run.group.hash) }}
{% else %}
{{ run.group.name }}
{% endif %}
{% endif %}
|
{% if run.group and not group_context %} {% for name, metadata in (run.group.metadata or {}).items() %} {% endfor %} {% endif %} {% for name, metadata in (run.user_metadata or {}).items() %} {% endfor %} | {% if run.status != 'running' %} {% if run.files_exist %} 📥 Download ZIP {% else %} 📥 Download ZIP {% endif %} {% endif %} {% if run.retention_days and run.start_time %} {% endif %} |
📋
{% endif %}
No Test Runs Found
Start a test run to see it appear here.