We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38023f commit c0cc502Copy full SHA for c0cc502
.travis.yml
@@ -26,8 +26,9 @@ env:
26
27
- DJANGO=">=1.10,<1.11" DRF=">=3.4,<3.5"
28
before_install:
29
- # Force an upgrade of py to avoid VersionConflict
+ # Force an upgrade of py & pytest to avoid VersionConflict
30
- pip install --upgrade py
31
+ - pip install "pytest>=2.8,<3"
32
- pip install codecov
33
install:
34
- pip install Django${DJANGO} djangorestframework${DRF}
setup.py
@@ -105,7 +105,7 @@ def get_package_data(package):
105
tests_require=[
106
'pytest-factoryboy',
107
'pytest-django',
108
- 'pytest>=2.8',
+ 'pytest>=2.8,<3',
109
] + mock,
110
zip_safe=False,
111
)
0 commit comments