mirror of https://github.com/MISP/PyTaxonomies
25 lines
412 B
YAML
25 lines
412 B
YAML
language: python
|
|
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.5-dev"
|
|
- "nightly"
|
|
|
|
install:
|
|
- pip install coveralls
|
|
- pip install codecov
|
|
- pip install -r website/REQUIREMENTS.txt
|
|
- pip install .
|
|
- git clone https://github.com/MISP/misp-taxonomies.git
|
|
|
|
script:
|
|
- nosetests --with-coverage --cover-package=pytaxonomies
|
|
|
|
after_success:
|
|
- codecov
|
|
- coveralls
|