site/templates/status.html

15 lines
487 B
HTML

{% extends "page.html" %}{% import "tests.html" as tests %}
{% block title %}{{ page.title }}{% endblock title %}
{% block main %}
{{ super() }}
{% if config.extra.tests.pipelines %}
<aside class="widget-tests">
{% for pipeline_name, _ in config.extra.tests.pipelines %}
{{ tests::pipeline(directory=config.extra.tests.directory, name=pipeline_name) }}
{% endfor %}
</aside>
{% else %}
<h2>No test pipeline configured in config.extra.tests.pipelines</h2>
{% endif %}
{% endblock main %}