-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
41 lines (41 loc) · 953 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
33
34
35
36
37
38
39
40
41
language: c
sudo: false
env:
global:
- PATH=$HOME/miniconda/bin:$PATH
matrix:
include:
- os: linux
python : "2.7"
env: CONDA_PY=27 CONDA_NPY=110
- os: linux
python : "2.7"
env: CONDA_PY=27 CONDA_NPY=111
- os: linux
python : "3.4"
env: CONDA_PY=34 CONDA_NPY=110
- os: linux
python : "3.4"
env: CONDA_PY=34 CONDA_NPY=111
- os: linux
python : "3.5"
env: CONDA_PY=35 CONDA_NPY=110
- os: linux
python : "3.5"
env: CONDA_PY=35 CONDA_NPY=111
- os: osx
python : "2.7"
env: CONDA_PY=27 CONDA_NPY=111
- os: osx
python : "3.5"
env: CONDA_PY=35 CONDA_NPY=111
before_install:
- source tools/install_miniconda.sh
- conda config --set always_yes true
- conda config --add channels omnia
- conda install conda-build nose
script:
- conda build -q conda-recipe
after_success:
- pip install coveralls
- coveralls