From 581ae8dfad66f7770bc8e475ab53536924b9990b Mon Sep 17 00:00:00 2001 From: Bruno Goncalves Date: Apr 03 2018 12:36:22 +0000 Subject: improving python-syntax.sh output --- diff --git a/tests/python-syntax.sh b/tests/python-syntax.sh index 1134cf6..a796932 100755 --- a/tests/python-syntax.sh +++ b/tests/python-syntax.sh @@ -63,6 +63,7 @@ plint_enable="W0611,W0612,W0622" plint_disable="W,R,C,E1002,E1101,E1103,E1120,F0401,I0011,E0611" for pyfile in $python_files; do + echo -e "\n### Running tests for ${pyfile} ###\n" run "inspekt indent ${pyfile}" error=$((error + $?)) run "inspekt lint --enable $plint_enable --disable $plint_disable ${pyfile}"