2016-07-25 18:48:08 +02:00
|
|
|
language: python
|
|
|
|
|
|
|
|
cache: pip
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "3.3"
|
|
|
|
- "3.4"
|
|
|
|
- "3.5"
|
2016-07-26 10:32:46 +02:00
|
|
|
- "3.5-dev"
|
2016-07-25 18:48:08 +02:00
|
|
|
- "nightly"
|
|
|
|
|
|
|
|
install:
|
|
|
|
- pip install coveralls
|
|
|
|
- pip install codecov
|
2016-10-05 23:36:52 +02:00
|
|
|
- pip install -r website/REQUIREMENTS.txt
|
2016-07-25 18:48:08 +02:00
|
|
|
- pip install .
|
2016-07-25 19:38:17 +02:00
|
|
|
- git clone https://github.com/MISP/misp-taxonomies.git
|
2016-07-25 18:48:08 +02:00
|
|
|
|
|
|
|
script:
|
|
|
|
- nosetests --with-coverage --cover-package=pytaxonomies
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- codecov
|
|
|
|
- coveralls
|