-
Notifications
You must be signed in to change notification settings - Fork 71
/
.travis.yml
55 lines (52 loc) · 1.17 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
language: python
jobs:
include:
- name: "Python 3.6 on Linux"
python: "3.6"
os: "linux"
env:
- PYTHON=python3
- PIP=pip3
- name: "Python 3.7 on Linux"
python: "3.7"
os: "linux"
env:
- PYTHON=python3
- PIP=pip3
- name: "Python 3.8 on Linux"
python: "3.8"
os: "linux"
env:
- PYTHON=python3
- PIP=pip3
- name: "Python 3.7 on macOS"
os: osx
osx_image: xcode11.2
language: shell
env:
- PYTHON=python3
- PIP=pip3
- name: "Python 3.6 on Windows"
os: windows
language: shell
before_install:
- choco install python --version 3.6.8
env:
- PATH=/c/Python36:/c/Python36/Scripts:$PATH
- PYTHON=python
- PIP=pip
- name: "Python 3.7 on Windows"
os: windows
language: shell
before_install:
- choco install python --version 3.7.4
env:
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
- PYTHON=python
- PIP=pip
install:
- $PYTHON --version
- $PIP install -r requirements.txt
script:
- $PYTHON --version
- $PYTHON main.py citest