forked from astroML/astroML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (32 loc) · 1017 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
42
43
language: generic
# Setting sudo to false opts in to Travis-CI container-based builds.
sudo: false
os: linux
# The apt packages below are needed for sphinx builds. A full list of
# packages that can be included can be found here:
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
addons:
apt:
packages:
- gfortran
env:
global:
- PYTHON_VERSION=3.6
- NUMPY_VERSION=1.12
- ASTROPY_VERSION=stable
- CONDA_DEPENDENCIES='scipy scikit-learn<0.19 nose matplotlib pymc'
- PIP_DEPENDENCIES='astroML_addons'
- DEBUG=true
matrix:
fast_finish: true
include:
- env: NUMPY_VERSION=1.11
- env: PYTHON_VERSION=3.5 NUMPY_VERSION=1.10
- env: PYTHON_VERSION=3.4 NUMPY_VERSION=1.9
- env: PYTHON_VERSION=2.7
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
- python setup.py install
script:
- nosetests astroML