jenkins/tox: limit pytest version to a version compatible with pytest-cov

This commit is contained in:
Frédéric Péters 2019-01-06 17:03:31 +01:00
parent 52e0d92b20
commit acdff4e57e
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ _EOF_
# $PIP_BIN install --upgrade 'pip<8'
$PIP_BIN install --upgrade setuptools
$PIP_BIN install --upgrade pytest WebTest mock pytest-cov pyquery pytest-django
$PIP_BIN install --upgrade 'pytest<4.1' WebTest mock pytest-cov pyquery pytest-django
$PIP_BIN install --upgrade 'pylint<1.8' # 1.8 broken (cf build #3023)
$PIP_BIN install --upgrade 'Django==1.8' 'gadjo' 'django-ckeditor<4.5.3'

View File

@ -14,7 +14,7 @@ passenv =
deps =
django18: django>=1.8,<1.9
django111: django>=1.11,<1.12
pytest>=3.3.0
pytest>=3.3.0,<4.1
pytest-mock
pytest-cov
WebTest