camelot-py/.travis.yml

20 lines
404 B
YAML
Executable File

sudo: false
language: python
cache: pip
python:
- "2.7"
- "3.5"
- "3.6"
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
before_install:
- sudo apt-get install python-tk python3-tk ghostscript
install:
- pip install ".[dev]"
script:
- pytest --verbose --cov-config .coveragerc --cov-report term --cov-report xml --cov=camelot tests
after_success:
- codecov --verbose