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"
|
2019-09-17 22:30:04 +02:00
|
|
|
- "3.7"
|
|
|
|
- "3.7-dev"
|
2020-02-17 19:15:39 +01:00
|
|
|
- "3.8"
|
|
|
|
- "3.8-dev"
|
2020-11-05 19:20:53 +01:00
|
|
|
- "3.9"
|
|
|
|
- "3.9-dev"
|
2016-07-25 18:48:08 +02:00
|
|
|
|
|
|
|
install:
|
2020-02-17 19:15:39 +01:00
|
|
|
- pip install poetry
|
|
|
|
- poetry install -E webui -E remote
|
2016-07-25 18:48:08 +02:00
|
|
|
|
|
|
|
script:
|
2020-02-17 19:15:39 +01:00
|
|
|
- poetry run nosetests-3.4 --with-coverage --cover-package=pytaxonomies -d
|
2020-11-05 19:20:53 +01:00
|
|
|
- poetry run mypy pytaxonomies
|
2016-07-25 18:48:08 +02:00
|
|
|
|
|
|
|
after_success:
|
2020-02-17 19:15:39 +01:00
|
|
|
- poetry run codecov
|
|
|
|
- poetry run coveralls
|