{% 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 %}
Group

{{ group_context.name or ('Group ' ~ group_context.hash) }}

{% set group_meta = group_context.metadata or {} %} {% if group_meta %} {% for name, metadata in group_meta.items() %}
{{ name }} {% if metadata.url %} {{ metadata.value }} {% else %} {{ metadata.value }} {% endif %}
{% endfor %} {% else %}
No metadata defined for this group.
{% endif %}
{% endif %} {% for run in runs_index %} {% endfor %}
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.start_time %}
{{ run.start_time }}
{% endif %} {% if run.start_time and run.end_time %}
{% endif %}
{% if run.status != 'running' %} {% if run.files_exist %} 📥 Download ZIP {% else %} 📥 Download ZIP {% endif %} {% endif %} {% if run.retention_days and run.start_time %}
{% endif %}
{% if not runs_index %}
📋

No Test Runs Found

Start a test run to see it appear here.

{% endif %}