Projet

Général

Profil

0002-build-make-it-fail-in-case-of-pylint-warnings-55505.patch

Lauréline Guérin, 12 juillet 2021 11:23

Télécharger (635 octets)

Voir les différences:

Subject: [PATCH 02/23] build: make it fail in case of pylint warnings (#55505)

 pylint.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
pylint.sh
2 2
set -e -x
3 3
env
4 4

  
5
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out || /bin/true
5
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0
6
-