summaryrefslogtreecommitdiffstats
path: root/_testing
diff options
context:
space:
mode:
authorAilin Nemui2015-01-17 18:50:58 +0100
committerAilin Nemui2015-01-17 19:04:39 +0100
commiteead9dfa87de80a205c60f5f7d03f2afbd884e3f (patch)
tree01cc40ae9867691562d5abb149b6740683b29b4a /_testing
parent9115699f7227fcefbaf8f8b4eb4d4eaafe0ede16 (diff)
downloadscripts.irssi.org-eead9dfa87de80a205c60f5f7d03f2afbd884e3f.tar.bz2
Disable use of graphical symbols in test report
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.
Diffstat (limited to '_testing')
-rwxr-xr-x_testing/report-test.zsh10
1 files changed, 7 insertions, 3 deletions
diff --git a/_testing/report-test.zsh b/_testing/report-test.zsh
index ffe536a..6c05f46 100755
--- a/_testing/report-test.zsh
+++ b/_testing/report-test.zsh
@@ -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 {