Greg Steiert / pegasus_dev

Dependents:   blinky_max32630fthr

Committer:
switches
Date:
Fri Nov 11 20:59:50 2016 +0000
Revision:
0:5c4d7b2438d3
Initial commit

Who changed what in which revision?

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