Skip to content

Commit

Permalink
Limit maximum pytest version
Browse files Browse the repository at this point in the history
Needed until pytest-dev/pytest#3074 is fixed.
  • Loading branch information
elliterate committed Jan 3, 2018
1 parent affd720 commit 29e81c3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@
if sys.version_info < (3, 3):
tests_require.append("mock")

driver_verification_tests_require = ["flaky", "flask", "py", "pytest >= 3", "werkzeug"]
driver_verification_tests_require = [
"flaky",
"flask",
"py",
# See: https://github.com/pytest-dev/pytest/issues/3074
"pytest >= 3, < 3.3",
"werkzeug"]
if sys.version_info < (3, 3):
driver_verification_tests_require.append("mock")

Expand Down

0 comments on commit 29e81c3

Please sign in to comment.