mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-29 11:26:57 +08:00
39 lines
865 B
YAML
39 lines
865 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
|
|
|
|
python:
|
|
- 2.6
|
|
- "2.7_with_system_site_packages"
|
|
- 3.2
|
|
- 3.3
|
|
- 3.4
|
|
|
|
before_install:
|
|
- export DISPLAY=:99.0
|
|
- export PYTHONWARNINGS="all"
|
|
- export WHEELHOUSE="--no-index --find-links=http://wheels.scikit-image.org/"
|
|
- travis_retry tools/travis_setup.sh
|
|
|
|
install:
|
|
- python setup.py build_ext --inplace
|
|
- python setup.py install
|
|
|
|
script:
|
|
- tools/header.py "Run all tests with minimum dependencies"
|
|
- nosetests --exe -v skimage
|
|
|
|
- tools/header.py "Pep8 and Flake tests"
|
|
- flake8 --exit-zero --exclude=test_*,six.py skimage doc/examples viewer_examples
|
|
|
|
- travis_retry tools/travis_install_optional.sh
|
|
- tools/travis_test.sh
|
|
|
|
after_success:
|
|
- coveralls
|