-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.travis.yml
35 lines (33 loc) · 855 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
31
32
33
34
35
language: python
matrix:
include:
- name: "Python 2.7 on Precise"
python: 2.7
dist: precise
- name: "Python 3.5 on Xenial Linux"
python: 3.5
dist: xenial
- name: "Python 3.6 on Xenial Linux"
python: 3.6
dist: xenial
- name: "Python 3.7 on Xenial Linux"
python: 3.7
dist: xenial
- name: "Python 3.7 on Bionic Linux"
python: 3.7
dist: bionic
- name: "Python 3.7.2 on macOS"
python: 3.7.2
os: osx
osx_image: xcode10.2
language: shell
- name: "Python 3.8 on Windows"
python: 3.8
os: windows
language: shell
before_install:
- choco install python --version 3.8.0
- python -m pip install setuptools
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
# command to run tests
script: python setup.py test