Merge pull request #685 from micw523/update-tox

Support Python 3.7 for Travis CI
This commit is contained in:
k8s-ci-robot 2018-11-12 17:07:41 -08:00 committed by GitHub
commit 35e6406536
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -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",
],
)

View File

@ -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