-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
57 lines (57 loc) · 1.59 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
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install -r requirements-dev.txt
script:
- python -m unittest
matrix:
include:
- name: "Python 3.7.4 on macOS 10.14.4"
os: osx
osx_image: xcode11.2
language: shell
before_install:
- python3 --version
- pip3 install --upgrade pip
install: pip3 install -r requirements-dev.txt
script: python3 -m unittest
- name: "Python 3.7.7 on macOS 10.14.6"
os: osx
osx_image: xcode11.3
language: shell
before_install:
- python3 --version
- pip3 install --upgrade pip
install: pip3 install -r requirements-dev.txt
script: python3 -m unittest
- name: "Python 3.7.7 on macOS 10.15.4"
os: osx
osx_image: xcode11.4
language: shell
before_install:
- python3 --version
- pip3 install --upgrade pip
install: pip3 install -r requirements-dev.txt
script: python3 -m unittest
- name: "Python 3.7.7 on Windows"
os: windows
language: shell
before_install:
- choco install python --version 3.7.7
- python --version
- python -m pip install --upgrade pip
- python -m pip install certifi
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
- name: "Python 3.8.3 on Windows"
os: windows
language: shell
before_install:
- choco install python --version 3.8.3
- python --version
- python -m pip install --upgrade pip
- python -m pip install certifi
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH