diff --git a/pylint.sh b/pylint.sh index 241d24c..24eaaf4 100755 --- a/pylint.sh +++ b/pylint.sh @@ -10,4 +10,4 @@ else echo No pylint RC found exit 0 fi -pylint -f parseable --rcfile ${PYLINT_RC} "$@" > pylint.out || /bin/true +pylint -f parseable --rcfile ${PYLINT_RC} "$@" | tee pylint.out; test $PIPESTATUS -eq 0 diff --git a/tox.ini b/tox.ini index 852479f..a54efff 100644 --- a/tox.ini +++ b/tox.ini @@ -67,7 +67,7 @@ deps = pylint-django commands = ./getlasso3.sh - /bin/bash -c "./pylint.sh src/authentic2_auth_fedict/" + ./pylint.sh src/authentic2_auth_fedict/ [testenv:code-style] skip_install = true