File tree Expand file tree Collapse file tree 2 files changed +29
-9
lines changed Expand file tree Collapse file tree 2 files changed +29
-9
lines changed Original file line number Diff line number Diff line change 1- sudo : false
21language : python
3- python :
4- - " 2.7"
5- - " 3.5"
6- - " 3.6"
7- # - "3.7" It doesn't look like Travis is supporting v3.7 yet
8- install : " script/setup"
9- script : " script/ci"
102cache : pip
3+
4+ install : script/setup
5+
6+ jobs :
7+ include :
8+ - name : " Lint"
9+ python : 3.8
10+ script : script/test lint
11+
12+ - name : " Tests on Python 2.7"
13+ python : 2.7
14+ script : script/ci
15+
16+ - name : " Tests on Python 3.5"
17+ python : 3.5
18+ script : script/ci
19+
20+ - name : " Tests on Python 3.6"
21+ python : 3.6
22+ script : script/ci
23+
24+ - name : " Tests on Python 3.7"
25+ python : 3.7
26+ script : script/ci
27+
28+ - name : " Tests on Python 3.8"
29+ python : 3.8
30+ script : script/ci
Original file line number Diff line number Diff line change 2020
2121
2222# Run the test suite
23- script/test
23+ script/test tests
You can’t perform that action at this time.
0 commit comments