ci: Generate valid HTML for the report

Fix a typo in the closing <ul>, and add a missing closing <div>.
This commit is contained in:
Emmanuele Bassi 2019-04-13 14:28:53 +01:00
parent 3412d18dc2
commit b98c7214ef

View File

@ -36,7 +36,7 @@ REPORT_TEMPLATE = '''
<li><strong>Total units:</strong> {{ report.total_units }}</li>
<li><strong>Passed:</strong> {{ report.total_successes }}</li>
<li><strong>Failed:</strong> {{ report.total_failures }}</li>
</u>
</ul>
</div>
</section>
@ -63,6 +63,7 @@ REPORT_TEMPLATE = '''
</div>
{% endif %}
{% endfor %}
</div>
</section>
{% endfor %}