File tree Expand file tree Collapse file tree 3 files changed +30
-10
lines changed Expand file tree Collapse file tree 3 files changed +30
-10
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,29 @@ language: python
3
3
sudo : true
4
4
services :
5
5
- docker
6
- env :
7
- - TOXENV=py35
8
- - TOXENV=py34
9
- - TOXENV=py27
10
- - TOXENV=py27-functional
11
- - TOXENV=py35-functional
12
- - TOXENV=update-pep8
13
- - TOXENV=docs
14
- - TOXENV=coverage,codecov
6
+
7
+ matrix :
8
+ include :
9
+ - python : 2.7
10
+ env : TOXENV=py27
11
+ - python : 2.7
12
+ env : TOXENV=py27-functional
13
+ - python : 2.7
14
+ env : TOXENV=update-pep8
15
+ - python : 2.7
16
+ env : TOXENV=docs
17
+ - python : 2.7
18
+ env : TOXENV=coverage,codecov
19
+ - python : 3.4
20
+ env : TOXENV=py34
21
+ - python : 3.5
22
+ env : TOXENV=py35
23
+ - python : 3.5
24
+ env : TOXENV=py35-functional
25
+ - python : 3.6
26
+ env : TOXENV=py36
27
+ - python : 3.6
28
+ env : TOXENV=py36-functional
15
29
16
30
install :
17
31
- pip install tox
Original file line number Diff line number Diff line change 64
64
"Programming Language :: Python :: 3" ,
65
65
"Programming Language :: Python :: 3.4" ,
66
66
"Programming Language :: Python :: 3.5" ,
67
+ "Programming Language :: Python :: 3.6" ,
67
68
],
68
69
)
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py27, py34, py35
2
+ envlist = py27, py34, py35, py36
3
3
4
4
[testenv]
5
5
passenv = TOXENV CI TRAVIS TRAVIS_*
@@ -29,6 +29,11 @@ commands =
29
29
python -V
30
30
{toxinidir}/scripts/kube-init.sh nosetests -v []
31
31
32
+ [testenv:py36-functional]
33
+ commands =
34
+ python -V
35
+ {toxinidir}/scripts/kube-init.sh nosetests -v []
36
+
32
37
[testenv:coverage]
33
38
commands =
34
39
python -V
You can’t perform that action at this time.
0 commit comments