File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ image : python
2
+
3
+ stages :
4
+ - test
5
+
6
+ before_script :
7
+ - curl -O https://bootstrap.pypa.io/get-pip.py
8
+ - python get-pip.py
9
+ - pip install tox
10
+
11
+ python35 :
12
+ image : python:3.5
13
+ stage : test
14
+ script : tox -e py35
15
+
16
+ python36 :
17
+ image : python:3.6
18
+ stage : test
19
+ script : tox -e py36
20
+
21
+ lint :
22
+ image : python:3.6
23
+ stage : test
24
+ script : tox -e lint
25
+
Original file line number Diff line number Diff line change 1
1
matrix :
2
2
fast_finish : true
3
3
include :
4
- - python : " 3.4.2"
5
- env : TOXENV=py34
6
4
- python : " 3.6"
7
5
env : TOXENV=lint
8
6
- python : " 3.5"
@@ -13,6 +11,8 @@ matrix:
13
11
env : TOXENV=py36
14
12
- python : " 3.6"
15
13
env : TOXENV=build
14
+ - python : " 3.7-dev"
15
+ env : TOXENV=py37
16
16
17
17
install : pip install -U tox coveralls
18
18
language : python
You can’t perform that action at this time.
0 commit comments