Skip to content

Commit de9b187

Browse files
committed
Prepare for Python 3.7 tests
1 parent 4d4ce21 commit de9b187

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ matrix:
2727
env: TOXENV=py36
2828
- python: 3.6
2929
env: TOXENV=py36-functional
30+
- python: 3.7
31+
env: TOXENV=py37
32+
- python: 3.7
33+
env: TOXENV=py37-functional
3034

3135
install:
3236
- pip install tox

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,6 @@
7777
"Programming Language :: Python :: 3.4",
7878
"Programming Language :: Python :: 3.5",
7979
"Programming Language :: Python :: 3.6",
80+
"Programming Language :: Python :: 3.7",
8081
],
8182
)

tox.ini

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36
2+
envlist = py27, py34, py35, py36, py37
33

44
[testenv]
55
passenv = TOXENV CI TRAVIS TRAVIS_*
@@ -34,6 +34,11 @@ commands =
3434
python -V
3535
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
3636

37+
[testenv:py37-functional]
38+
commands =
39+
python -V
40+
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
41+
3742
[testenv:coverage]
3843
commands =
3944
python -V

0 commit comments

Comments
 (0)