From a0d295a8e2666eafd32e2c279999f3845f5ccec3 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sun, 16 Jun 2019 16:04:00 -0700 Subject: [PATCH] Black Formatting - travis # --- ci/push.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/push.sh b/ci/push.sh index 8ce709f..4470bad 100755 --- a/ci/push.sh +++ b/ci/push.sh @@ -9,6 +9,7 @@ check_format() { black hyperglass git add hyperglass/ *.py git commit --message "Black Formatting - travis #$TRAVIS_BUILD_NUMBER" + echo "Completed Black Formatting" } run_pylint() { @@ -17,10 +18,11 @@ run_pylint() { check_pylint() { PYLINT_SCORE=$(run_pylint) - if [ "$PYLINT_SCORE" != "10.00" ]; + if [ "$PYLINT_SCORE" != "10.00" ] then git add pylint.svg git commit --message "Pylint Badge - travis #$TRAVIS_BUILD_NUMBER" + echo "Completed Pylint Check & Badge Creation" fi }