dosage/.travis.yml

31 lines
547 B
YAML
Raw Normal View History

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