PyTaxonomies/.travis.yml

21 lines
336 B
YAML
Raw Normal View History

2016-07-25 18:48:08 +02:00
language: python
cache: pip
python:
2017-07-19 18:14:36 +02:00
- "3.6"
- "3.6-dev"
2016-07-25 18:48:08 +02:00
- "nightly"
install:
2019-01-22 16:07:32 +01:00
- pip install pipenv
2016-10-05 23:36:52 +02:00
- pip install -r website/REQUIREMENTS.txt
2019-01-22 16:07:32 +01:00
- pipenv install
2016-07-25 18:48:08 +02:00
script:
2019-01-22 16:07:32 +01:00
- pipenv run nosetests --with-coverage --cover-package=pytaxonomies -d
2016-07-25 18:48:08 +02:00
after_success:
2019-01-22 16:07:32 +01:00
- pipenv run codecov
- pipenv run coveralls