Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin hypothesis to 3.5.0 because 3.5.1 breaks the test suite #1962

Merged
merged 1 commit into from
Sep 26, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}

Expand All @@ -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
Expand Down