Merge pull request #1962 from nicoddemus/fix-ci
Pin hypothesis to 3.5.0 because 3.5.1 breaks the test suite
This commit is contained in:
commit
01068e5571
12
tox.ini
12
tox.ini
|
@ -11,7 +11,8 @@ envlist=
|
||||||
commands= pytest --lsof -rfsxX {posargs:testing}
|
commands= pytest --lsof -rfsxX {posargs:testing}
|
||||||
passenv = USER USERNAME
|
passenv = USER USERNAME
|
||||||
deps=
|
deps=
|
||||||
hypothesis
|
# pin to 3.5.0 until 3.5.2 is released
|
||||||
|
hypothesis==3.5.0
|
||||||
nose
|
nose
|
||||||
mock
|
mock
|
||||||
requests
|
requests
|
||||||
|
@ -47,7 +48,8 @@ commands = flake8 pytest.py _pytest testing
|
||||||
deps=pytest-xdist>=1.13
|
deps=pytest-xdist>=1.13
|
||||||
mock
|
mock
|
||||||
nose
|
nose
|
||||||
hypothesis
|
# pin to 3.5.0 until 3.5.2 is released
|
||||||
|
hypothesis==3.5.0
|
||||||
commands=
|
commands=
|
||||||
pytest -n1 -rfsxX {posargs:testing}
|
pytest -n1 -rfsxX {posargs:testing}
|
||||||
|
|
||||||
|
@ -71,8 +73,10 @@ commands=
|
||||||
pytest -rfsxX test_pdb.py test_terminal.py test_unittest.py
|
pytest -rfsxX test_pdb.py test_terminal.py test_unittest.py
|
||||||
|
|
||||||
[testenv:py27-nobyte]
|
[testenv:py27-nobyte]
|
||||||
deps=pytest-xdist>=1.13
|
deps=
|
||||||
hypothesis
|
pytest-xdist>=1.13
|
||||||
|
# pin to 3.5.0 until 3.5.2 is released
|
||||||
|
hypothesis==3.5.0
|
||||||
distribute=true
|
distribute=true
|
||||||
setenv=
|
setenv=
|
||||||
PYTHONDONTWRITEBYTECODE=1
|
PYTHONDONTWRITEBYTECODE=1
|
||||||
|
|
Loading…
Reference in New Issue