aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-09-03 18:15:48 -0400
committerGitHub <noreply@github.com>2016-09-03 18:15:48 -0400
commit64b10c60755b6c7d70d178aeb7ff79ae9daf56bd (patch)
tree9ec22315958209baf7660b04cc4cdb34d9f0c2ce
parent7f8144544f23f4fd84d339d846b91d4e3b703dd4 (diff)
parent4d035167b3b441e86d58e4d865b8b2c2dd5407a7 (diff)
downloadexternal_python_setuptools-64b10c60755b6c7d70d178aeb7ff79ae9daf56bd.tar.gz
external_python_setuptools-64b10c60755b6c7d70d178aeb7ff79ae9daf56bd.tar.bz2
external_python_setuptools-64b10c60755b6c7d70d178aeb7ff79ae9daf56bd.zip
Merge pull request #770 from nicoddemus/pytest-3
Use pytest>=3.0.2
-rw-r--r--.travis.yml2
-rwxr-xr-xsetup.py2
-rw-r--r--tox.ini2
3 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 81d1f170..b8bca7cc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,7 +12,7 @@ env:
- LC_ALL=C LC_CTYPE=C
script:
# avoid VersionConflict when newer version is required
- - pip install -U 'pytest>=2.8,<3'
+ - pip install -U 'pytest>=3.0.2'
# Output the env, because the travis docs just can't be trusted
- env
diff --git a/setup.py b/setup.py
index 9263c5b7..90702c1d 100755
--- a/setup.py
+++ b/setup.py
@@ -181,7 +181,7 @@ setup_params = dict(
tests_require=[
'setuptools[ssl]',
'pytest-flake8',
- 'pytest>=2.8,<3',
+ 'pytest>=3.0.2',
] + (['mock'] if sys.version_info[:2] < (3, 3) else []),
setup_requires=[
] + pytest_runner + wheel,
diff --git a/tox.ini b/tox.ini
index 868ba317..806e6ed2 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,6 +4,6 @@ envlist = py26,py27,py33,py34,py35,pypy,pypy3
[testenv]
deps=
pytest-flake8
- pytest>=2.8,<3
+ pytest>=3.0.2
passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir
commands=python setup.py test --addopts='-rsx'