From 9988a356ff7a56ca2a47d2ceeb8e5f069f1f41c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 17 Jul 2023 10:17:29 +0200 Subject: [PATCH] ci: fail pylint if it's not clean (#79712) --- pylint.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pylint.sh b/pylint.sh index 2892b93..be49ce4 100755 --- a/pylint.sh +++ b/pylint.sh @@ -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