-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (53 loc) · 1.71 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
language: python
jobs:
include:
- name: Linux Python 3.6
os: linux
python: 3.6
- name: Linux Python 3.7
os: linux
python: 3.7
- name: Linux Python 3.8
os: linux
python: 3.8
- name: Linux Python 3.9
os: linux
python: 3.9
- name: Windows Python 3.6
os: windows
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python --version 3.6.0
- python -m pip install --upgrade pip
- python --version
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
- name: Windows Python 3.7
os: windows
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python --version 3.7.0
- python -m pip install --upgrade pip
- python --version
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
- name: Windows Python 3.8
os: windows
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python --version 3.8.0
- python -m pip install --upgrade pip
- python --version
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
- name: Windows Python 3.9
os: windows
language: shell # 'language: python' is an error on Travis CI Windows
before_install:
- choco install python --version 3.9.0
- python -m pip install --upgrade pip
- python --version
env: PATH=/c/Python39:/c/Python39/Scripts:$PATH
install:
- |
python -m pip install .
script:
- |
python -m unittest discover --start-directory python_bindings/tests --pattern "*_test*.py"