File tree Expand file tree Collapse file tree 2 files changed +24
-5
lines changed Expand file tree Collapse file tree 2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
- python :
3
- - " 2.7"
4
- - " 3.4"
5
- - " 3.5"
6
- - " 3.6"
7
2
install :
8
3
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; fi
9
4
script :
10
5
- python -m unittest test_asserts
11
6
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then mypy asserts test_asserts.py; fi
12
7
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then python -m doctest asserts/__init__.py; fi
8
+ jobs :
9
+ include :
10
+ - stage : test
11
+ python : 2.7
12
+ dist : trusty
13
+ sudo : false
14
+ - stage : test
15
+ python : 3.4
16
+ dist : trusty
17
+ sudo : false
18
+ - stage : test
19
+ python : 3.5
20
+ dist : trusty
21
+ sudo : false
22
+ - stage : test
23
+ python : 3.6
24
+ dist : trusty
25
+ sudo : false
26
+ - stage : test
27
+ python : 3.7
28
+ dist : xenial
29
+ sudo : true
30
+
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ def read(fname):
31
31
"Programming Language :: Python :: 3.4" ,
32
32
"Programming Language :: Python :: 3.5" ,
33
33
"Programming Language :: Python :: 3.6" ,
34
+ "Programming Language :: Python :: 3.7" ,
34
35
"Topic :: Software Development :: Quality Assurance" ,
35
36
"Topic :: Software Development :: Testing" ,
36
37
],
You can’t perform that action at this time.
0 commit comments