We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f608a3 commit a37ada4Copy full SHA for a37ada4
test/collate-results.py
@@ -72,8 +72,11 @@
72
print(f'| {serverKey: <12} ', end='')
73
for clientKey in clientKeys:
74
if clientKey in results_dict[serverKey]:
75
- resultChar = '✔' if results_dict[serverKey][clientKey] == '0' else '✘'
76
- print(f'| {resultChar: <7}', end='')
+ badge_url = "https://img.shields.io/badge/-✔-green" if results_dict[serverKey][clientKey] == '0' else "https://img.shields.io/badge/-✘-red"
+ resultChar = f''
77
+ print(f'| {resultChar} ', end='')
78
else:
- print(f'| {"✘":<7}', end='')
79
+ badge_url = "https://img.shields.io/badge/-✘-red"
80
81
82
print('|')
0 commit comments