From 924f7da521f5967690b7df114fa65ff14d8d1a05 Mon Sep 17 00:00:00 2001 From: Gabriel Becedillas Date: Sun, 26 Apr 2015 00:55:55 -0300 Subject: [PATCH] Optimizer test cases not working on travis. --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 655804443..c6b7ed547 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,18 +25,16 @@ before_install: - sudo pip install coveralls # PyAlgoTrade dependencies - sudo pip install --allow-external=TA-Lib --allow-unverified=TA-Lib -r travis/requirements.txt - # Work around for multiprocessing permission bug with Travis - - sudo rm -rf /dev/shm - - sudo ln -s /run/shm /dev/shm install: - pip list - pip install . # command to run tests +# optimizer_testcase is ignored because it gets blocked in Travis. script: - export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH - - nosetests --with-coverage --cover-package=pyalgotrade + - nosetests --ignore-files=optimizer_testcase --with-coverage --cover-package=pyalgotrade after_success: - coveralls