Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Show notes for skipped tests if they exist and add support for expectedFailure test results #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 29, 2020
Prev Previous commit
Next Next commit
Minify the html tables
  • Loading branch information
coolreader18 committed May 27, 2020
commit cb07a7e82a5725cfae34e163032c29a4b92ec1e3
10 changes: 8 additions & 2 deletions _layouts/regrtests_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
</div>

<!-- content -->
{% capture tables %}
<div class="w-80 m-auto">
<div class="m-auto">

Expand Down Expand Up @@ -85,7 +86,7 @@ <h2 class="font-secondary">Summary:</span>
{% for cases in result.cases %}
<div class="results-case">
<div class="tbl results-case-list">
<!-- for each case -->
{% comment %} for each case {% endcomment %}
{% for case in cases %}
<div data-status="{{case.result}}" class="row results-case-list-details">

Expand Down Expand Up @@ -128,7 +129,7 @@ <h2 class="font-secondary">Summary:</span>

</div>
{% endfor %}
<!-- end for each case -->
{% comment %} end for each case {% endcomment %}
</div>
</div>
{% endfor %}
Expand All @@ -140,5 +141,10 @@ <h2 class="font-secondary">Summary:</span>
{% endfor %}
</div>
</div>
{% endcapture %}

{%- assign tables = tables | split: "
"-%}
{%- for line in tables -%}{{ line | strip }}{%- endfor -%}

<script src="/assets/js/regrtests_results.js"></script>