Skip to content

Commit ea6a318

Browse files
authored
Merge pull request #3201 from psiinon/test/wavsep-broken
Template changes for broken tests
2 parents 1f2b6c9 + 90a296c commit ea6a318

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

site/content/docs/scans/wavsep.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Click on the Sections to see the full set of results, which also give the local
1414
> [!WARNING]
1515
> We are still in the process of configuring and checking this scan, so you should not rely on the results just yet.
1616
17+
We are also aware that some tests are broken - they are shown as "⚠️ Broken" and do not count as failures.
18+
1719
{{< scan-table >}}
1820

1921
{{< scan-total target= "wavsep">}}

site/layouts/shortcodes/scan-results.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,15 @@
3838
{{ if eq $test.result "Pass" }}
3939
<td><div class="scan-result-pass">&#10003; {{ $test.result}} </div></td>
4040
<td></td>
41-
{{ else }}
41+
{{ else if eq $test.result "Broken" }}
42+
<td></td>
43+
<td><div class="scan-result-fail">⚠️ {{ $test.result}} </div></td>
44+
{{ else if eq $test.result "FAIL" }}
4245
<td></td>
4346
<td><div class="scan-result-fail">&#10060; {{ $test.result}} </div></td>
47+
{{ else }}
48+
<td></td>
49+
<td><div class="scan-result-fail">‼️ {{ $test.result}} </div></td>
4450
{{ end }}
4551
</tr>
4652
{{ end }}

0 commit comments

Comments
 (0)