BLD: Exclude test_examples from Travis-CI, also exclude scipy.

scipy build was getting too heavyweight for the Travis-CI build.

Removes test_examples from Travis-CI run, since the examples
depend on scipy and other compiled libraries.

Please, still run test_examples before submitting patches.
This commit is contained in:
Eddie Hebert
2013-05-07 21:20:55 -04:00
parent cdc3886e91
commit 41f1200dbd
+2 -3
View File
@@ -7,10 +7,9 @@ before_install:
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
- pip install scipy==0.12.0
- cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose== | xargs pip install --use-mirrors
- 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 zipline tests"
script:
- nosetests
- nosetests --exclude=^test_examples