blacklist pytest 3.2.0 because it breaks our tests

see pytest-dev/pytest#2644 for reference
This commit is contained in:
Patrick Kanzler 2017-08-04 14:01:26 +02:00
parent 27c843935f
commit c259263f26
3 changed files with 4 additions and 2 deletions

View File

@ -5,3 +5,4 @@ pyserial
sphinx-rtd-theme sphinx-rtd-theme
setuptools-scm setuptools-scm
docutils>=0.12 docutils>=0.12
viivakoodi

View File

@ -126,7 +126,7 @@ setup(
tests_require=[ tests_require=[
'jaconv', 'jaconv',
'tox', 'tox',
'pytest', 'pytest!=3.2.0',
'pytest-cov', 'pytest-cov',
'pytest-mock', 'pytest-mock',
'nose', 'nose',

View File

@ -7,7 +7,7 @@ deps = nose
coverage coverage
scripttest scripttest
mock mock
pytest pytest!=3.2.0
pytest-cov pytest-cov
pytest-mock pytest-mock
hypothesis hypothesis
@ -19,6 +19,7 @@ basepython = python
changedir = doc changedir = doc
deps = sphinx>=1.5.1 deps = sphinx>=1.5.1
setuptools_scm setuptools_scm
viivakoodi
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:flake8] [testenv:flake8]