forked from pierreablin/picard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
26 lines (26 loc) · 882 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
language: python
before_install:
- wget -q http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p /home/travis/miniconda
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes --quiet conda
- sudo apt-get install octave
install:
- conda create -n testenv --yes pip python=2.7
- source activate testenv
- conda install --yes --quiet numpy=1.11 matplotlib=1.5 numexpr scipy=0.19
- conda install --yes --quiet nose coverage
- pip install flake8 check-manifest
- pip install coverage coveralls
- python setup.py install
script:
- make
- flake8 --count picard
- cd examples/matlab_octave
- octave plot_ica.m
- octave plot_ica_whiten.m
- octave plot_ica_pca.m
- cd ..//..
after_success:
- bash <(curl -s https://codecov.io/bash)