Files
scikit-image/.travis.yml
T
Steven Silvester 0b4884a361 Switch to a single script to get the folds to work
Switch to a single script to get the folds to work

Replace the old install_min with this before_install script

Reinstate optional installs and add headers

move the display setup to the travis_script

Use force remove on temp directory

Always retry on pip

Fix the travis_retry pip alias

Source the before_install script and move the alias

Create bash functions for folding and export DISPLAY

Export fold functions

Make repip a function
2014-12-14 12:26:13 -06:00

41 lines
822 B
YAML

# vim ft=yaml
# After changing this file, check it on:
# http://yaml-online-parser.appspot.com/
# See doc/travis_notes.txt for some guidelines
language: python
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/1fea29525e8b929dd7c7
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
before_install:
- sudo apt-get update
- source tools/travis_before_install.sh
- which python; python --version
- python check_bento_build.py
- tools/build_versions.py
install:
- python setup.py build_ext --inplace
- python setup.py install
script: tools/travis_script.sh
after_success:
- coveralls