From d3078a77c7342ebaac06fb2e50621c78233a0b82 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Thu, 10 Nov 2016 17:58:40 +0100 Subject: [PATCH] Added color to test-all. --- test-all | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test-all b/test-all index 17ef5b4..3f33943 100755 --- a/test-all +++ b/test-all @@ -10,8 +10,11 @@ for test in ${CODEBASE_PATH}/*_test.py; do echo done if [ $FAILURE -eq 0 ]; then + echo -e "\e[32m" # Green echo "Tests passed." else + echo -e "\e[91m" # Red echo "Tests failed." fi +echo -e "\e[39m" # Normal exit $FAILURE