build: make it fail in case of pylint warnings (#55505)

This commit is contained in:
Lauréline Guérin 2021-07-09 15:22:32 +02:00
parent bf9914eecf
commit 702982e8f1
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@
set -e -x
env
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out || /bin/true
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0