forked from Archives/searxng
[perf] pylint: Use multiple processes to speed up Pylint.
Specifying '-j 0' will auto-detect the number of processors available to use. Suggested-by: @dalf / https://github.com/searx/searx/pull/2421#issuecomment-751444257 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
b6dcf90816
commit
af584f2c40
@ -129,7 +129,7 @@ quiet_cmd_virtualenv = PYENV usage: $ source ./$@/bin/activate
|
|||||||
|
|
||||||
# $2 path to lint
|
# $2 path to lint
|
||||||
quiet_cmd_pylint = LINT $@
|
quiet_cmd_pylint = LINT $@
|
||||||
cmd_pylint = $(PY_ENV_BIN)/python -m pylint --rcfile $(PYLINT_RC) $2
|
cmd_pylint = $(PY_ENV_BIN)/python -m pylint -j 0 --rcfile $(PYLINT_RC) $2
|
||||||
|
|
||||||
quiet_cmd_pytest = TEST $@
|
quiet_cmd_pytest = TEST $@
|
||||||
cmd_pytest = $(PY_ENV_BIN)/python -m tox -vv
|
cmd_pytest = $(PY_ENV_BIN)/python -m tox -vv
|
||||||
|
Loading…
Reference in New Issue
Block a user