flask-logging-extras/.travis.yml
Gergely Polonkai ffccdf6d38 Remove Python 3.6 from Tox configuration
It seems Travis-CI doesn’t support it yet.
2017-01-16 11:51:11 +01:00

17 lines
287 B
YAML

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