PyTaxonomies/.travis.yml

20 lines
293 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
2019-01-22 16:17:17 +01:00
- pipenv install -d
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