PyMISP/.travis.yml

38 lines
788 B
YAML
Raw Normal View History

2016-08-17 18:36:01 +02:00
language: python
cache: pip
addons:
apt:
sources: [ 'ubuntu-toolchain-r-test' ]
packages:
- libstdc++6
- libfuzzy-dev
2016-08-17 18:36:01 +02:00
python:
- "2.7"
- "3.5"
- "3.5-dev"
2017-01-24 09:50:34 +01:00
- "3.6"
- "3.6-dev"
2016-08-17 18:36:01 +02:00
install:
- pip install -U nose
- pip install coveralls
- pip install codecov
2017-09-20 11:15:13 +02:00
- pip install requests-mock
2017-08-25 17:23:50 +02:00
- pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.7.0.dev.zip
- pip install git+https://github.com/kbandla/pydeep.git
2017-08-25 17:23:50 +02:00
- pip install python-magic
2016-08-17 18:36:01 +02:00
- pip install .
2017-08-25 17:14:33 +02:00
- pushd tests
- git clone https://github.com/viper-framework/viper-test-files.git
- popd
2016-08-17 18:36:01 +02:00
script:
- nosetests --with-coverage --cover-package=pymisp tests/test_offline.py
after_success:
- codecov
- coveralls