Merge "Pylint: use -j 0 arg"

This commit is contained in:
Zuul 2019-09-20 07:25:21 +00:00 committed by Gerrit Code Review
commit 837df0ff94
1 changed files with 1 additions and 2 deletions

View File

@ -37,8 +37,7 @@ run_pylint() {
if [ -n "${files}" ]; then
echo "Running pylint against:"
printf "\t%s\n" "${files[@]}"
pylint --rcfile=.pylintrc --output-format=colorized ${files} -E \
-j `python -c 'import multiprocessing as mp; print(mp.cpu_count())'`
pylint --rcfile=.pylintrc --output-format=colorized ${files} -E -j 0
else
echo "No python changes in this commit, pylint check not required."
exit 0