File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,23 @@ <h2 class="font-secondary">Summary:</span>
9999 {% if case.result %}
100100 < div class ="cell {{case.result }} results-case-list-item text-mobile-right ">
101101 < span class ="text-small text-muted d-mobile-none "> RESULT:</ span >
102- {{case.result }}
102+ < span class ="case-result "> {{case.result }}</ span >
103+ {%- if case.result == "skipped" -%}
104+ {%- assign note = case.note | default: result.note-%}
105+ {%- assign lownote = note | downcase -%}
106+ {%- if lownote contains "todo: rustpython" -%}
107+ {%- assign note = lownote | remove: "todo: rustpython," | remove: "todo: rustpython:" | remove: "todo: rustpython" | strip -%}
108+ {%- if note and note != "" %}
109+ < span class ="text-small text-muted d-mobile-none "> TO RESOLVE:</ span >
110+ < span class ="d-mobile-none case-note "> {{ note }}</ span >
111+ {%- endif -%}
112+ {%- elsif note == "implementation detail specific to cpython" -%}
113+ < span class ="text-small text-muted d-mobile-none "> (CPython only)</ span >
114+ {%- else -%}
115+ < span class ="text-small text-muted d-mobile-none "> not skipped by us:</ span >
116+ < span class ="text-small d-mobile-none case-note "> {{ note }}</ span >
117+ {%- endif -%}
118+ {%- endif -%}
103119 </ div >
104120 {% endif %}
105121
Original file line number Diff line number Diff line change @@ -315,12 +315,12 @@ ul.list-inline {
315315 padding : 5px ;
316316}
317317
318- .passed ::after {
318+ .passed > . case-result ::after {
319319 content : " 🚀 👌" ;
320320 padding : 5px ;
321321}
322322
323- .skipped ::after {
323+ .skipped > . case-result ::after {
324324 content : " 🤷♀️" ;
325325}
326326
You can’t perform that action at this time.
0 commit comments