forked from afmacedo/ruruki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (41 loc) · 967 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
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.5-dev
- 3.6-dev
- nightly
install:
- pip install coveralls
- pip install tox-travis
matrix:
include:
- python: 3.5
env:
- TOXENV=docs
allow_failures:
- python: 3.5-dev
- python: 3.6-dev
- python: nightly
script:
- mkdir docs/_static
- tox -e ${TOXENV:-py${TRAVIS_PYTHON_VERSION/./}}
after_success: coveralls
addons:
code_climate:
repo_token: 7d980e6d410263f70fb969ade0a0a5086a208d2f2212d493af18b91bb451aafa
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5b086dea7b576065764a
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always
email:
recipients:
on_success: change
on_failure: always