p2pfs/.travis.yml
Yuxin Wang fe646894b4 Drop python 3.4 support.
async and await syntaxes are introduced since python 3.5
2018-10-04 15:42:47 -04:00

26 lines
282 B
YAML

sudo: false
language: python
python:
- "3.5"
- "3.6"
cache: pip
install:
- pip install tox-travis
script:
- tox
jobs:
include:
- stage: codecov
python: 3.6
script:
- tox
- pip install codecov && codecov
notifications:
email: false