diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-14 15:22:41 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-14 15:22:41 -0400 |
commit | 416b9169185cb5b6c9674f5fbb541fe2b567cecb (patch) | |
tree | f2422540889519031fc0d4b83da25dffa2ebb9d8 | |
parent | 50cc68846f9b78a4d0984c5a9475203b3c87c1e0 (diff) | |
download | python-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.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 = |