PyMISPWarningLists/.travis.yml

20 lines
282 B
YAML
Raw Normal View History

2017-10-29 01:40:41 +02:00
language: python
cache: pip
python:
- "3.6-dev"
2019-05-13 10:24:13 +02:00
- "3.7-dev"
2020-04-07 14:50:09 +02:00
- "3.8-dev"
2017-10-29 01:40:41 +02:00
install:
2020-04-07 14:50:09 +02:00
- pip install poetry
- poetry install
2017-10-29 01:40:41 +02:00
script:
2020-04-07 14:50:09 +02:00
- poetry run nosetests-3.4 --with-coverage --cover-package=pymispwarninglists -d
2017-10-29 01:40:41 +02:00
after_success:
- codecov
- coveralls