mail_to_misp/.travis.yml

22 lines
355 B
YAML

language: python
cache: pip
python:
- "3.6-dev"
- "3.7-dev"
- "3.8-dev"
install:
- pip install poetry
- poetry install
- git submodule init
- git submodule update
script:
- poetry run nosetests --with-coverage --cover-package=mail2misp tests/tests.py
after_success:
- poetry run codecov
- poetry run coveralls