.travis.yml
295 Bytes
language: python
install:
- pip install codecov
- pip install pytest-cov
- pip install Pillow
python:
- "3.5"
- "3.6"
matrix:
include:
- name: "Python 3.7.1 on Xenial Linux"
python: 3.7
dist: xenial
script: py.test --cov-report=xml --cov=./
after_success:
- codecov