File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,15 +2,29 @@ language: python
2
2
3
3
matrix :
4
4
include :
5
+ # Linux runners.
5
6
- python : 3.5
6
7
- python : 3.6
7
8
- python : 3.7
8
9
dist : xenial
9
-
10
+ # Windows runners.
11
+ - name : " Python 3.7 on Windows"
12
+ os : windows
13
+ language : shell # `language: python` is not supported for now.
14
+ before_install :
15
+ - choco install python --version 3.7.7
16
+ - python --version # Display the used version.
17
+ - python -m pip install --upgrade pip
18
+ install :
19
+ - python setup.py build install
20
+ - pip install --upgrade coveralls
21
+ script :
22
+ - python setup.py lint test
23
+ env : PATH=/c/Python37:/c/Python37/Scripts:$PATH
10
24
11
25
install :
12
26
- python3 setup.py build install
13
- - pip install python- coveralls
27
+ - pip install --upgrade coveralls
14
28
15
29
script :
16
30
python3 setup.py lint test
You can’t perform that action at this time.
0 commit comments