From: Ailin Nemui Date: Sat, 17 Jan 2015 17:50:58 +0000 (+0100) Subject: Disable use of graphical symbols in test report X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=eead9dfa87de80a205c60f5f7d03f2afbd884e3f;p=irssi-scripts.irssi.org.git 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. --- 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 {