This repository has been archived by the owner on Sep 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
63 lines (52 loc) · 1.58 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
sudo: false
language: c
env:
global:
- NUMPY_VERSION=1.10
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.4
- PYTHON_VERSION=3.5
matrix:
include:
# Python 2.7
- os: linux
env: PYTHON_VERSION=2.7 NUMPY_VERSION=1.7
- os: linux
env: PYTHON_VERSION=2.7 NUMPY_VERSION=1.8
- os: linux
env: PYTHON_VERSION=2.7 NUMPY_VERSION=1.9
# Python 3.4
- os: linux
env: PYTHON_VERSION=3.4 NUMPY_VERSION=1.8
- os: linux
env: PYTHON_VERSION=3.4 NUMPY_VERSION=1.9
# Python 3.5
- os: linux
env: PYTHON_VERSION=3.5 NUMPY_VERSION=1.9
# Mac OS X
- os: osx
env: PYTHON_VERSION=2.7
- os: osx
env: PYTHON_VERSION=3.4
- os: osx
env: PYTHON_VERSION=3.5
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh -O miniconda.sh;
else
wget https://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 yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda create --yes -n test python=$PYTHON_VERSION numpy=$NUMPY_VERSION scipy pytest setuptools h5py pip
- source activate test
- pip install pytest-cov coveralls
script:
- python setup.py test -a "--cov emcee3 -v"
after_success:
- coveralls