diff options
| author | Eric N. Vander Weele <ericvw@gmail.com> | 2019-11-15 20:48:37 +0900 |
|---|---|---|
| committer | Eric N. Vander Weele <ericvw@gmail.com> | 2019-11-15 20:53:03 +0900 |
| commit | 03ee3644ddff4f3445f65878c301d6b75ae732c4 (patch) | |
| tree | 20bff1671704ef3f4cd68f100525dde084ac7874 | |
| parent | e653ab80627dea38e785ea059b6fe42595a4ce81 (diff) | |
| download | flake8-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.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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} |
