-
Notifications
You must be signed in to change notification settings - Fork 17
/
.travis.yml
32 lines (31 loc) · 940 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
language: python
matrix:
include:
- name: "Python 3.6 on Linux"
os: linux
python: 3.6
dist: xenial
- name: "Python 3.7 on Linux"
os: linux
python: 3.7
dist: xenial
- name: "Python nightly on Linux"
os: linux
python: nightly
dist: xenial
- name: "Python 3.6 on Windows"
os: windows
language: shell
before_install: choco install python3 --version 3.6.8
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
- name: "Python 3.7 on Windows"
os: windows
language: shell
before_install: choco install python3 --version 3.7.3
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
- name: "Python 3.8 on Windows"
os: windows
language: shell
before_install: choco install python3 --pre
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
script: python3 -m unittest discover -v || python -m unittest discover -v