aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/tool/mbed/mbed-sdk/workspace_tools/ci_templates/tests_build/build_report.html
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/tool/mbed/mbed-sdk/workspace_tools/ci_templates/tests_build/build_report.html')
-rw-r--r--tmk_core/tool/mbed/mbed-sdk/workspace_tools/ci_templates/tests_build/build_report.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/tmk_core/tool/mbed/mbed-sdk/workspace_tools/ci_templates/tests_build/build_report.html b/tmk_core/tool/mbed/mbed-sdk/workspace_tools/ci_templates/tests_build/build_report.html
new file mode 100644
index 000000000..1e2ae7d5c
--- /dev/null
+++ b/tmk_core/tool/mbed/mbed-sdk/workspace_tools/ci_templates/tests_build/build_report.html
@@ -0,0 +1,31 @@
+<div class="toggleshow{% if report.failing|length == 0 %} toggleshow-hide{% endif %}">
+ <h3>
+ <a href="#" class="toggleshow-title">
+ <span class="toggleshow-arrow"></span>
+ {% if report.failing|length > 0 %}
+ <span class="redbold">[FAIL]</span>
+ {% else %}
+ <span class="greenbold">[PASS]</span>
+ {% endif %}
+
+ {{report.target}} - Passing: {{report.passing|length}}, Failing: {{report.failing|length}}, Skipped: {{report.skipped|length}}
+ </a>
+ </h3>
+
+ <div class="toggleshow-body">
+ <h4 class="redbold">Failing</h4>
+ {% with build = report.failing %}
+ {% include 'tests_build/build_report_table.html' %}
+ {% endwith %}
+
+ <h4 class="greenbold">Passing</h4>
+ {% with build = report.passing %}
+ {% include 'tests_build/build_report_table.html' %}
+ {% endwith %}
+
+ <h4>Skipped</h4>
+ {% with build = report.skipped %}
+ {% include 'tests_build/build_report_table.html' %}
+ {% endwith %}
+ </div>
+</div>