forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (42 loc) · 1006 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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
sudo: false
cache:
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- libfreeimage3
- texlive
- texlive-latex-extra
- dvipng
- python-qt4
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; true
- 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