flask-logging-extras/.travis.yml
Gergely Polonkai e23cc83dff Update Travis-CI configuration with better codecov settings
Codecov suggests to use the bash uploader, even in Python projects. Who am I
to disagree? :)
2017-01-16 11:48:43 +01:00

18 lines
305 B
YAML

language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=py36
install:
- pip install -U pip
- pip install -U Flask tox coverage codecov
script:
- tox
after_success:
- bash <(curl -s https://codecov.io/bash)