aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-08-30 17:11:39 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-08-30 17:12:03 +0700
commit12175d358850cfbfe40c060292d8273cabc23cbc (patch)
treec0f344fe361a6b470db475e13265ef84d11068d2
parent59f3b1154f96fccf5c6d44461eb2a5c376cb266d (diff)
contrib/jenkins.sh: pylint v2.15 is unstable, pin v2.14.5
pylint v2.15 is crashing, let's fall-back to a known to work v2.14.5. Change-Id: Ie29be6ec6631ff2b3d8cd6b2dd9ac0ed8f505e4f Related: https://github.com/PyCQA/pylint/issues/7375 Related: OS#5668
-rwxr-xr-xcontrib/jenkins.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index ac5fba8..bdf1311 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -36,7 +36,7 @@ python -m unittest discover -v -s tests/
# Ignore E0401: import-error
# pySim/utils.py:276: E0401: Unable to import 'Crypto.Cipher' (import-error)
# pySim/utils.py:277: E0401: Unable to import 'Crypto.Util.strxor' (import-error)
-pip install pylint
+pip install pylint==2.14.5 # FIXME: 2.15 is crashing, see OS#5668
python -m pylint --errors-only \
--disable E1102 \
--disable E0401 \