Prepare for Python 3.7 tests

This commit is contained in:
micw523 2018-11-09 19:58:26 -06:00
parent 4d4ce21265
commit de9b187054
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