ci: fail pylint if it's not clean (#79712)

This commit is contained in:
Frédéric Péters 2023-07-17 10:17:29 +02:00
parent c61ed273eb
commit 9988a356ff
1 changed files with 1 additions and 2 deletions

View File

@ -2,5 +2,4 @@
set -e -x
env
pylint --jobs ${NUMPROCESSES:-1} -f parseable --rcfile pylint.rc "$@" | tee pylint.out
exit 0
pylint --jobs ${NUMPROCESSES:-1} -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0