dosage/.travis.yml

31 lines
547 B
YAML
Raw Normal View History

2013-02-14 20:28:34 +00:00
language: python
python:
- "2.7"
- "3.4"
- "3.5"
2017-01-12 00:38:59 +00:00
- "3.6"
2019-01-03 23:04:04 +00:00
- "3.7"
2016-05-21 14:06:11 +00:00
cache: pip
2019-01-03 23:04:04 +00:00
dist: xenial
2013-02-14 20:32:20 +00:00
# command to install dependencies
install:
2017-11-28 00:27:40 +00:00
- pip install -U tox-travis setuptools codecov
2013-02-14 20:28:34 +00:00
# command to run tests
2016-03-20 18:43:48 +00:00
script: tox
after_success:
2017-11-28 00:27:40 +00:00
codecov --file .tox/cov-*.xml
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true
2018-03-11 00:12:52 +00:00
# Push site to gh-pages branch
deploy:
- provider: script
skip_cleanup: true
script: .github/deploy.sh
on:
branch: master
2019-01-03 23:04:04 +00:00
python: 3.7