Skip to content

Commit 80bf6b5

Browse files
committed
ci: Travis: add osx and Windows jobs
1 parent b3138ab commit 80bf6b5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ env:
77

88
jobs:
99
include:
10+
- os: windows
11+
language: shell
12+
env:
13+
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
14+
- TOXENV=py37-coverage
15+
before_install:
16+
- choco install --no-progress python
17+
18+
- os: osx
19+
osx_image: xcode10.2
20+
language: generic
21+
env: TOXENV=py37-coverage
22+
before_install:
23+
- ln -sfn "$(which python3)" /usr/local/bin/python
24+
- python -V
25+
- test $(python -c 'import sys; print("%d%d" % sys.version_info[0:2])') = 37
26+
1027
- python: '2.7'
1128
env: TOXENV=py27-coverage
1229
- python: '3.4'

0 commit comments

Comments
 (0)