From 416b9169185cb5b6c9674f5fbb541fe2b567cecb Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 14 Apr 2021 15:22:41 -0400 Subject: build: avoid pylint randomness -j seems to introduce non-determinism: https://github.com/PyCQA/pylint/issues/4356 With -j4, we'd have occasional (1 in 20?) failures on CI. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index fba1593c..b36bf1a1 100644 --- a/tox.ini +++ b/tox.ini @@ -82,7 +82,7 @@ commands = check-manifest --ignore 'lab/*,perf/*,doc/sample_html/*,.treerc,.github*' python setup.py -q sdist bdist_wheel twine check dist/* - python -m pylint --notes= -j 4 {env:LINTABLE} + python -m pylint --notes= {env:LINTABLE} [gh-actions] python = -- cgit v1.2.1