Merge pull request #685 from micw523/update-tox
Support Python 3.7 for Travis CI
This commit is contained in:
commit
35e6406536
@ -27,6 +27,10 @@ matrix:
|
||||
env: TOXENV=py36
|
||||
- python: 3.6
|
||||
env: TOXENV=py36-functional
|
||||
- python: 3.7
|
||||
env: TOXENV=py37
|
||||
- python: 3.7
|
||||
env: TOXENV=py37-functional
|
||||
|
||||
install:
|
||||
- pip install tox
|
||||
|
||||
1
setup.py
1
setup.py
@ -77,5 +77,6 @@ setup(
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
],
|
||||
)
|
||||
|
||||
7
tox.ini
7
tox.ini
@ -1,5 +1,5 @@
|
||||
[tox]
|
||||
envlist = py27, py34, py35, py36
|
||||
envlist = py27, py34, py35, py36, py37
|
||||
|
||||
[testenv]
|
||||
passenv = TOXENV CI TRAVIS TRAVIS_*
|
||||
@ -34,6 +34,11 @@ commands =
|
||||
python -V
|
||||
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
|
||||
|
||||
[testenv:py37-functional]
|
||||
commands =
|
||||
python -V
|
||||
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
|
||||
|
||||
[testenv:coverage]
|
||||
commands =
|
||||
python -V
|
||||
|
||||
Loading…
Reference in New Issue
Block a user