]> git.99rst.org Git - irssi-scripts.irssi.org.git/commitdiff
Disable use of graphical symbols in test report
authorAilin Nemui <redacted>
Sat, 17 Jan 2015 17:50:58 +0000 (18:50 +0100)
committerAilin Nemui <redacted>
Sat, 17 Jan 2015 18:04:39 +0000 (19:04 +0100)
Github changed their renderer so graphical symbols will stop rendering
altogether if they exceed some number. So we have to go back to plain
text.

_testing/report-test.zsh

index ffe536a8f0f4dbbb5e384d79c3a33fdb8eb86573..6c05f460013b37efd6286927b8171dc140851abd 100755 (executable)
@@ -8,9 +8,13 @@ local T=
 
 if [[ $MARKDOWN_REPORT == 1 ]] {
     echo '## Irssi Scripts Test Report'
-    failmark=:x:
-    passmark=:white_check_mark:
-    skipmark=:construction:
+    # github started to block excess use of emojis
+    #failmark=:x:
+    #passmark=:white_check_mark:
+    #skipmark=:construction:
+    failmark=✘
+    passmark=✔
+    skipmark=☡
     T="|"
 } \
 else {
git clone https://git.99rst.org/PROJECT