-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (25 loc) · 710 Bytes
/
Copy path.travis.yml
File metadata and controls
31 lines (25 loc) · 710 Bytes
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
# make it explicit to prefer container-based travis workers
sudo: false
language: python
cache:
apt: true
directories:
- $HOME/.cache/pip
- $HOME/download
branches:
except:
- gh-pages
install: source .travis_install.sh
# command to run tests, e.g. python setup.py test
script:
- coverage run --source=planet4 setup.py test
after_success:
- coveralls
# - codecov
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b4b9edd321cd6608b49f
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always