summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authornozzy123nozzy <nozzy123nozzy@gmail.com>2021-10-27 20:50:08 +0900
committerGitHub <noreply@github.com>2021-10-27 13:50:08 +0200
commite8713873813bfab5fafb04b0fb8b5221011faa41 (patch)
tree8592d78958bc9c5923b06abdcf1a8e6d61c00d96 /tox.ini
parent158a5912f294383807a3457b43930085274f1e6a (diff)
downloadpylint-git-e8713873813bfab5fafb04b0fb8b5221011faa41.tar.gz
Fix tox dependencies with pypy (#5217)
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 0d13fa8ad..550bbf166 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,6 +2,7 @@
minversion = 2.4
envlist = formatting, py36, py37, py38, py39, py310, pypy, benchmark
skip_missing_interpreters = true
+requires = pip >=21.3.1
[testenv:pylint]
deps =
@@ -29,7 +30,8 @@ commands =
setenv =
COVERAGE_FILE = {toxinidir}/.coverage.{envname}
deps =
- -r {toxinidir}/requirements_test.txt
+ !pypy: -r {toxinidir}/requirements_test.txt
+ pypy: -r {toxinidir}/requirements_test_min.txt
commands =
; Run tests, ensuring all benchmark tests do not run
pytest --benchmark-disable {toxinidir}/tests/ {posargs:}