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 11language : python
2- python :
3- - " 2.7"
4- - " 3.4"
5- - " 3.5"
6- - " 3.6"
72install :
83 - if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; fi
94script :
105 - python -m unittest test_asserts
116 - if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then mypy asserts test_asserts.py; fi
127 - 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):
3131 "Programming Language :: Python :: 3.4" ,
3232 "Programming Language :: Python :: 3.5" ,
3333 "Programming Language :: Python :: 3.6" ,
34+ "Programming Language :: Python :: 3.7" ,
3435 "Topic :: Software Development :: Quality Assurance" ,
3536 "Topic :: Software Development :: Testing" ,
3637 ],
You can’t perform that action at this time.
0 commit comments