forked from CarterBain/AlephNull
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
16 lines (16 loc) · 721 Bytes
/
.travis.yml
File metadata and controls
16 lines (16 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
- sudo apt-get install gfortran
install:
- cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose== | grep -v scipy | grep -v matplotlib | grep -v statsmodels | grep -v patsy | xargs pip install --use-mirrors
- etc/ordered_pip.sh etc/requirements.txt
before_script:
- "flake8 alephnull tests"
script:
- nosetests --exclude=^test_examples