mail_to_misp/.travis.yml

27 lines
406 B
YAML
Raw Normal View History

2018-05-14 23:23:30 +02:00
language: python
cache: pip
addons:
apt:
packages:
- libfuzzy-dev
2018-05-14 23:23:30 +02:00
python:
- "3.6-dev"
2020-06-07 21:28:15 +02:00
- "3.7-dev"
- "3.8-dev"
2018-05-14 23:23:30 +02:00
install:
2020-06-07 21:28:15 +02:00
- pip install poetry
- poetry install
2018-05-14 23:23:30 +02:00
- git submodule init
- git submodule update
script:
2020-06-07 21:28:15 +02:00
- poetry run nosetests --with-coverage --cover-package=mail2misp tests/tests.py
2018-05-14 23:23:30 +02:00
after_success:
2020-06-07 21:28:15 +02:00
- poetry run codecov
- poetry run coveralls