forked from MobleyLab/blues
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (33 loc) · 972 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
dist: trusty
sudo: false
language: python
branches:
only:
- master
install:
- if [[ $python == 2.7 ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- hash -r
- conda config --set always_yes true --set changeps1 no
- conda config --add channels ${ORGNAME}
- conda create -q -n testenv python=$python
- conda install conda-build
- source activate testenv
- conda info -a
- conda build --python $python devtools/conda-recipe
- conda install --use-local ${PACKAGENAME}
- conda list
script:
- py.test -v blues
env:
matrix:
- python=2.7 CONDA_PY=2.7
- python=3.5 CONDA_PY=3.5
global:
- ORGNAME="omnia"
- PACKAGENAME="blues"