aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-08-19 16:50:58 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-08-19 16:50:58 -0400
commitc296634d44de4a9715d09e4773b73b2d233fbbc4 (patch)
treeba512ed5a5cc3886c8fb4d0982eece4afdf1cad9
parenta7931d03be180878538bae00c78d93304e5ca09b (diff)
downloadexternal_python_setuptools-c296634d44de4a9715d09e4773b73b2d233fbbc4.tar.gz
external_python_setuptools-c296634d44de4a9715d09e4773b73b2d233fbbc4.tar.bz2
external_python_setuptools-c296634d44de4a9715d09e4773b73b2d233fbbc4.zip
Pin to pytest < 3 until skip errors can be resolved.
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cd4353d0..db619735 100755
--- a/setup.py
+++ b/setup.py
@@ -181,7 +181,7 @@ setup_params = dict(
tests_require=[
'setuptools[ssl]',
'pytest-flake8',
- 'pytest>=2.8',
+ 'pytest>=2.8,<3.0dev',
] + (['mock'] if sys.version_info[:2] < (3, 3) else []),
setup_requires=[
] + pytest_runner + wheel,