Skip to content

Commit b1994a5

Browse files
Dmitry YashuninDmitry Yashunin
authored andcommitted
Update travis
1 parent dda9b31 commit b1994a5

File tree

1 file changed

+25
-7
lines changed

1 file changed

+25
-7
lines changed

.travis.yml

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
language: python
22

3-
os:
4-
- linux
5-
- windows
6-
7-
python:
8-
- '3.6'
9-
- '3.7'
3+
jobs:
4+
include:
5+
- name: Linux Python 3.6
6+
os: linux
7+
python: 3.6
8+
9+
- name: Linux Python 3.7
10+
os: linux
11+
python: 3.7
12+
13+
- name: Windows Python 3.6
14+
os: windows
15+
language: shell # 'language: python' is an error on Travis CI Windows
16+
before_install:
17+
- choco install python --version 3.6.0
18+
- python -m pip install --upgrade pip
19+
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
20+
21+
- name: Windows Python 3.7
22+
os: windows
23+
language: shell # 'language: python' is an error on Travis CI Windows
24+
before_install:
25+
- choco install python --version 3.7.0
26+
- python -m pip install --upgrade pip
27+
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
1028

1129
install:
1230
- |

0 commit comments

Comments
 (0)