forked from PyMVPA/PyMVPA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (32 loc) · 1.13 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
# vim ft=yaml
# travis-ci.org definition for PyMVPA build (based on nipype configuration
# which in turn was based on nipy)
#
# We pretend to be erlang because we need can't use the python support in
# travis-ci; it uses virtualenvs, they do not have numpy, scipy, matplotlib,
# and it is impractical to build them
language: erlang
env:
global:
- PY=python PYSUF=''
# - PYTHON=python3 PYSUF=3 : python3-numpy not currently available
matrix:
- PYTHON=$PY
- PYTHON="$PY -O"
- PYTHONPATH=mvpa2/tests/badexternals
- MVPA_DEBUG=ENFORCE_CA_ENABLED MVPA_DEBUG_METRICS=all
install:
- sudo apt-cache policy # What is actually available?
#- sudo apt-get install $PYTHON-dev
- sudo apt-get install swig
- sudo apt-get install $PY-numpy
- sudo apt-get install $PY-scipy $PY-matplotlib
- sudo apt-get install $PY-h5py
- sudo apt-get install $PY-nose
- sudo apt-get install shogun-python-modular
- sudo apt-get install $PY-mdp $PY-psutil $PY-sklearn liblapack-dev
- sudo easy_install$PYSUF nibabel # Latest pypi
- make
script:
# Run only nonlabile tests
- make unittest-nonlabile