Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build_report.html 978B

12345678910111213141516171819202122232425262728293031
  1. <div class="toggleshow{% if report.failing|length == 0 %} toggleshow-hide{% endif %}">
  2. <h3>
  3. <a href="#" class="toggleshow-title">
  4. <span class="toggleshow-arrow"></span>
  5. {% if report.failing|length > 0 %}
  6. <span class="redbold">[FAIL]</span>
  7. {% else %}
  8. <span class="greenbold">[PASS]</span>
  9. {% endif %}
  10. {{report.target}} - Passing: {{report.passing|length}}, Failing: {{report.failing|length}}, Skipped: {{report.skipped|length}}
  11. </a>
  12. </h3>
  13. <div class="toggleshow-body">
  14. <h4 class="redbold">Failing</h4>
  15. {% with build = report.failing %}
  16. {% include 'tests_build/build_report_table.html' %}
  17. {% endwith %}
  18. <h4 class="greenbold">Passing</h4>
  19. {% with build = report.passing %}
  20. {% include 'tests_build/build_report_table.html' %}
  21. {% endwith %}
  22. <h4>Skipped</h4>
  23. {% with build = report.skipped %}
  24. {% include 'tests_build/build_report_table.html' %}
  25. {% endwith %}
  26. </div>
  27. </div>