-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
30 lines (30 loc) · 999 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
matrix:
include:
- name: "Python 3.7.5 on macOS 10.14"
os: osx
osx_image: xcode10.2
language: shell # 'language: python' errors on Travis CI macOS
before_install:
- python3 --version
install: pip3 install tox --user
script: tox -e py37
env: PATH=/Users/travis/Library/Python/3.7/bin:$PATH
- name: "Python 3.8 on macOS 10.15"
os: osx
osx_image: xcode12u
language: shell # 'language: python' errors on Travis CI macOS
before_install:
- python3 --version
install: pip3 install tox --user
script: tox -e py38
env: PATH=/Users/travis/Library/Python/3.8/bin:$PATH
- name: "Python 3.9 on macOS 10.15"
os: osx
osx_image: xcode12.2
language: shell # 'language: python' errors on Travis CI macOS
before_install:
- python3 --version
install: pip3 install tox --user
script: tox -e py39
env: PATH=/Users/travis/Library/Python/3.9/bin:$PATH