anime-downloader/.travis.yml

16 lines
251 B
YAML

language: python
python:
- "3.6"
- "3.7-dev"
matrix:
fast_finish: true
before_install:
- pip install pytest-cov
install:
- pip install -e ".[dev]"
script:
- python -m pytest tests --cov=.
after_success:
- pip install codecov
- codecov