2016-08-17 18:36:01 +02:00
|
|
|
language: python
|
|
|
|
|
|
|
|
cache: pip
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.4"
|
|
|
|
- "3.5"
|
|
|
|
- "3.5-dev"
|
2017-01-24 09:50:34 +01:00
|
|
|
- "3.6"
|
|
|
|
- "3.6-dev"
|
|
|
|
- "3.7-dev"
|
2016-08-17 18:36:01 +02:00
|
|
|
- "nightly"
|
|
|
|
|
|
|
|
install:
|
|
|
|
- pip install -U nose
|
|
|
|
- pip install coveralls
|
|
|
|
- pip install codecov
|
2016-08-17 18:38:37 +02:00
|
|
|
- pip install requests-mock
|
2016-08-17 18:36:01 +02:00
|
|
|
- pip install .
|
|
|
|
|
|
|
|
script:
|
|
|
|
- nosetests --with-coverage --cover-package=pymisp tests/test_offline.py
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- codecov
|
|
|
|
- coveralls
|