PyTaxonomies/.travis.yml

21 lines
336 B
YAML

language: python
cache: pip
python:
- "3.6"
- "3.6-dev"
- "nightly"
install:
- pip install pipenv
- pip install -r website/REQUIREMENTS.txt
- pipenv install
script:
- pipenv run nosetests --with-coverage --cover-package=pytaxonomies -d
after_success:
- pipenv run codecov
- pipenv run coveralls