{% extends "base.html" %} {% block title %} Testrun execution {% endblock %} {% block content %}
{% include "includes/flash.html" %}

Testrun Execution Status

{% if call.is_failed %}
Failed
ID: {{ call }}
ERROR:

{{ call.error_message }}

Back to Testrun
{% else %}
In progress
ID: {{ call }}

Testrun is executing. After the Testrun finish, the results will be available at:

{{ request.host }}{{ url_for("get_results", call_id=call) }}
{% endif %}
{% endblock %}