anime-downloader/.travis.yml

16 lines
251 B
YAML
Raw Normal View History

2018-05-27 11:59:51 -07:00
language: python
python:
- "3.6"
2019-07-17 07:47:52 -07:00
- "3.7-dev"
2018-05-31 04:23:29 -07:00
matrix:
fast_finish: true
2018-05-27 11:59:51 -07:00
before_install:
- pip install pytest-cov
install:
2019-07-17 10:35:56 -07:00
- pip install -e ".[dev]"
2018-05-27 11:59:51 -07:00
script:
2018-07-13 04:37:50 -07:00
- python -m pytest tests --cov=.
2018-05-27 11:59:51 -07:00
after_success:
- pip install codecov
- codecov