{% if systems %}
overall success rate | {{ int((health.passed / health.total) * 100) }}% |
---|---|
passed | {{ health.passed }} |
failed | {{ health.failed }} |
total | {{ health.total }} |
class | instances | success rate | |
---|---|---|---|
{% for system in systems %} |
{% for cls in system.classes %}
|{{format_outcome("passed" if cls.failed == 0)}}| {{system.name}}.{{ cls.name }} | {{ cls.total }} | {{ int((cls.passed / cls.total) * 100) }}% | {% endfor %} {% endfor %}
{% for system in systems %} {% for cls in system.classes %}
instance | outcome | duration | stations |
---|
{% for instance in cls.instances %}
|{{format_outcome(instance.report.outcome)}}|{{system.name}}.{{cls.name}}::{{instance.tag}}|{{instance.report.outcome}}|{{format_duration(instance.report.call.duration)}}| {%- if instance.report.user_properties -%} {{len(instance.report.user_properties[0].geojson.features)}} {%- else -%}0{%- endif -%}| {% endfor %}
{% endfor %}
{% endfor %}
{{ pformat(instance.instance) }}
{% if instance.report.outcome == "failed" %}
{{ instance.report.call.crash.message }}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %} {% else %} No systems {% endif %}