anime-downloader/.travis.yml

17 lines
246 B
YAML
Raw Normal View History

2018-05-27 11:59:51 -07:00
language: python
python:
2018-05-27 12:15:35 -07:00
- "3.3"
2018-05-27 11:59:51 -07:00
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
before_install:
- pip install pytest-cov
install:
- pip install -e .
script:
- python -m pytest tests --cov=.
after_success:
- pip install codecov
- codecov