From 73cab772490e97aa7cdf7dd61c942c51b9a07616 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sun, 25 Sep 2016 18:39:31 -0300 Subject: [PATCH] Pin hypothesis to 3.5.0 because 3.5.1 breaks the test suite Related to HypothesisWorks/hypothesis-python#368 --- tox.ini | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 3c12a8da3..e165b7a60 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,8 @@ envlist= commands= pytest --lsof -rfsxX {posargs:testing} passenv = USER USERNAME deps= - hypothesis + # pin to 3.5.0 until 3.5.2 is released + hypothesis==3.5.0 nose mock requests @@ -47,7 +48,8 @@ commands = flake8 pytest.py _pytest testing deps=pytest-xdist>=1.13 mock nose - hypothesis + # pin to 3.5.0 until 3.5.2 is released + hypothesis==3.5.0 commands= pytest -n1 -rfsxX {posargs:testing} @@ -71,8 +73,10 @@ commands= pytest -rfsxX test_pdb.py test_terminal.py test_unittest.py [testenv:py27-nobyte] -deps=pytest-xdist>=1.13 - hypothesis +deps= + pytest-xdist>=1.13 + # pin to 3.5.0 until 3.5.2 is released + hypothesis==3.5.0 distribute=true setenv= PYTHONDONTWRITEBYTECODE=1