pydu/.travis.yml

28 lines
346 B
YAML
Raw Permalink Normal View History

language: python
python:
- "2.7"
- "3.5"
- "3.6"
2020-02-08 12:22:19 +00:00
- "3.7"
- "3.8"
sudo: false
cache: pip
install:
2018-01-04 15:33:30 +00:00
- pip install tox codecov
script:
2018-01-04 15:10:37 +00:00
- tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d .)
2018-01-04 14:34:24 +00:00
after_success:
- codecov
notifications:
email:
recipients:
- wangbinxin001@126.com
2017-09-30 15:52:42 +00:00
on_success: always
on_failure: always