summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-04-14 15:22:41 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-04-14 15:22:41 -0400
commit416b9169185cb5b6c9674f5fbb541fe2b567cecb (patch)
treef2422540889519031fc0d4b83da25dffa2ebb9d8
parent50cc68846f9b78a4d0984c5a9475203b3c87c1e0 (diff)
downloadpython-coveragepy-git-416b9169185cb5b6c9674f5fbb541fe2b567cecb.tar.gz
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.
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
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 =