summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric N. Vander Weele <ericvw@gmail.com>2019-11-15 20:48:37 +0900
committerEric N. Vander Weele <ericvw@gmail.com>2019-11-15 20:53:03 +0900
commit03ee3644ddff4f3445f65878c301d6b75ae732c4 (patch)
tree20bff1671704ef3f4cd68f100525dde084ac7874
parente653ab80627dea38e785ea059b6fe42595a4ce81 (diff)
downloadflake8-03ee3644ddff4f3445f65878c301d6b75ae732c4.tar.gz
tox: Avoid installing pytest==5.2.3 due to an introduced regression
This will ensure that others don't git bitten by accidentally picking up `pytest==5.2.3`. See https://github.com/pytest-dev/pytest/issues/6194.
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index ad533f4..e44de43 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,7 @@ envlist = py27,py34,py35,py36,py37,py38,flake8,linters,docs
[testenv]
deps =
mock>=2.0.0
- pytest!=3.0.5
+ pytest!=3.0.5,!=5.2.3
coverage
commands =
coverage run -m pytest {posargs}