From 41f1200dbd0bdd3986423e8b38751b2419387ebc Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Tue, 7 May 2013 21:20:55 -0400 Subject: [PATCH] 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. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index dbd54e7f..4232da59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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