Skip to content

Commit

Permalink
Move 'travis_wait' to the .travis.yml file — fix "command not found"
Browse files Browse the repository at this point in the history
  • Loading branch information
Víctor Terrón committed Jun 10, 2015
1 parent 1f456fb commit a2e7585
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ before_install:
# SCAMP requires libplplotd.so.9, but Ubuntu 12.04 installs libplplotd.so.11
- sudo ln -s /usr/lib/libplplotd.so.{11,9}

- sudo ./ci/travis-setup.sh
# 'travis_wait': avoid timeout during SciPy installation
- travis_wait sudo ./ci/travis-setup.sh
- python ./setup.py

script:
Expand Down
3 changes: 1 addition & 2 deletions ci/travis-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ easy_install -U distribute

pip install "numpy>=1.7.1"
pip install -r pre-requirements.txt
# 'travis_wait': avoid timeout during SciPy installation
travis_wait pip install -r requirements.txt
pip install -r requirements.txt

CWD=$(pwd)

Expand Down

0 comments on commit a2e7585

Please sign in to comment.