-
Notifications
You must be signed in to change notification settings - Fork 17
/
.travis.yml
116 lines (115 loc) · 2.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
language: python
osx_image: xcode9.4
dist: trusty
matrix:
include:
- os: linux
python: 3.6
env: TOXENV=py36
install:
- ./.travis-install.sh
- pip install pytest
- pip install --upgrade numpy
- python -m pip install .
script:
- pytest -v
- os: linux
python: 3.7
env: TOXENV=py37
dist: xenial
install:
- ./.travis-install.sh
- pip install pytest
- python -m pip install .
script:
- pytest -v
- os: linux
python: 3.8
env: TOXENV=py38
dist: xenial
install:
- ./.travis-install.sh
- pip install pytest
- python -m pip install .
script:
- pytest -v
- os: osx
language: generic
env: TOXENV=py36
install:
- ./.travis-install.sh
- pip3 install pytest
- python3 -m pip install .
script:
- pytest -v
- os: osx
language: generic
env: TOXENV=py37
dist: xenial
install:
- ./.travis-install.sh
- pip3 install pytest
- python3 -m pip install .
script:
- pytest -v
- os: osx
language: generic
env: TOXENV=py38
dist: xenial
install:
- ./.travis-install.sh
- pip3 install pytest
- python3 -m pip install .
script:
- pytest -v
- os: windows
language: shell
before_install:
- choco install python --version=3.6
- python --version
- python -m pip install --upgrade pip
- pip install --upgrade pytest
- pip install codecov
- pip install numpy
- pip install cython
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
install:
- ./.travis-install.sh
- pip install pytest
- python -m pip install .
script:
- pytest -v
- os: windows
language: shell
before_install:
- choco install python --version=3.7
- python --version
- python -m pip install --upgrade pip
- pip install --upgrade pytest
- pip install codecov
- pip install numpy
- pip install cython
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
install:
- ./.travis-install.sh
- pip install pytest
- python -m pip install .
script:
- pytest -v
- os: windows
language: shell
before_install:
- choco install python --version=3.8
- python --version
- python -m pip install --upgrade pip
- pip install --upgrade pytest
- pip install codecov
- pip install numpy
- pip install cython
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
install:
- ./.travis-install.sh
- pip install pytest
- python -m pip install .
script:
- pytest -v