{{ name }} - Test Result

{% if runtime_errors|length > 0 %} {% endif %} {{ config }}
Type {{ type }}
Source {{ source }}
Destination {{ destination }}
Runtime errors
{% for error_title, runtime_error in runtime_errors.items() %}
{{ error_title|replace("_", " ")|title|escape }}
{% if runtime_error is sequence %}
    {% for sub_error in runtime_error %}
  • {{ sub_error|string|escape }}
  • {% endfor %}
{% else %} {{ runtime_error|string|escape }} {% endif %}
{% endfor %}
{{tests}}