Update tox and appveyor for CI tests to exclude pytest < 3
Update the install requires versions for pytest
This commit is contained in:
19
appveyor.yml
19
appveyor.yml
@@ -1,28 +1,13 @@
|
|||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
# note: please use "tox --listenvs" to populate the build matrix
|
# note: please use "tox --listenvs" to populate the build matrix
|
||||||
- TOXENV: "py26-pytest27"
|
|
||||||
- TOXENV: "py26-pytest28"
|
|
||||||
- TOXENV: "py26-pytest29"
|
|
||||||
- TOXENV: "py26-pytest30"
|
- TOXENV: "py26-pytest30"
|
||||||
- TOXENV: "py27-pytest27"
|
|
||||||
- TOXENV: "py27-pytest28"
|
|
||||||
- TOXENV: "py27-pytest29"
|
|
||||||
- TOXENV: "py27-pytest30"
|
- TOXENV: "py27-pytest30"
|
||||||
- TOXENV: "py34-pytest27"
|
|
||||||
- TOXENV: "py34-pytest28"
|
|
||||||
- TOXENV: "py34-pytest29"
|
|
||||||
- TOXENV: "py34-pytest30"
|
- TOXENV: "py34-pytest30"
|
||||||
- TOXENV: "py35-pytest27"
|
|
||||||
- TOXENV: "py35-pytest28"
|
|
||||||
- TOXENV: "py35-pytest29"
|
|
||||||
- TOXENV: "py35-pytest30"
|
- TOXENV: "py35-pytest30"
|
||||||
- TOXENV: "py36-pytest27"
|
|
||||||
- TOXENV: "py36-pytest28"
|
|
||||||
- TOXENV: "py36-pytest29"
|
|
||||||
- TOXENV: "py36-pytest30"
|
- TOXENV: "py36-pytest30"
|
||||||
- TOXENV: "py27-pytest28-pexpect"
|
- TOXENV: "py27-pytest30-pexpect"
|
||||||
- TOXENV: "py35-pytest28-pexpect"
|
- TOXENV: "py35-pytest30-pexpect"
|
||||||
- TOXENV: "flakes"
|
- TOXENV: "flakes"
|
||||||
- TOXENV: "readme"
|
- TOXENV: "readme"
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -20,7 +20,7 @@ setup(
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=['execnet>=1.1', 'pytest>=2.7.0', 'py>=1.4.22'],
|
install_requires=['execnet>=1.1', 'pytest>=3.0.0', 'py>=1.4.22'],
|
||||||
setup_requires=['setuptools_scm'],
|
setup_requires=['setuptools_scm'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
|||||||
7
tox.ini
7
tox.ini
@@ -1,8 +1,8 @@
|
|||||||
[tox]
|
[tox]
|
||||||
# if you change the envlist, please update .travis.yml file as well
|
# if you change the envlist, please update .travis.yml file as well
|
||||||
envlist=
|
envlist=
|
||||||
py{26,27,34,35,36}-pytest{27,28,29,30}
|
py{26,27,34,35,36}-pytest{30}
|
||||||
py{27,35}-pytest28-pexpect
|
py{27,35}-pytest{30}-pexpect
|
||||||
flakes
|
flakes
|
||||||
readme
|
readme
|
||||||
|
|
||||||
@@ -14,9 +14,6 @@ deps =
|
|||||||
pycmd
|
pycmd
|
||||||
# to avoid .eggs
|
# to avoid .eggs
|
||||||
setuptools_scm
|
setuptools_scm
|
||||||
pytest27: pytest~=2.7.2
|
|
||||||
pytest28: pytest~=2.8.7
|
|
||||||
pytest29: pytest~=2.9.2
|
|
||||||
pytest30: pytest~=3.0.5
|
pytest30: pytest~=3.0.5
|
||||||
pexpect: pexpect
|
pexpect: pexpect
|
||||||
platform=
|
platform=
|
||||||
|
|||||||
Reference in New Issue
Block a user