14 lines
321 B
YAML
Executable File
14 lines
321 B
YAML
Executable File
sudo: false
|
|
language: python
|
|
cache: pip
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
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 |