mirror of https://github.com/MISP/PyTaxonomies
21 lines
324 B
YAML
21 lines
324 B
YAML
language: python
|
|
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.6"
|
|
- "3.6-dev"
|
|
- "nightly"
|
|
|
|
install:
|
|
- pip install coveralls codecov jsonschema
|
|
- pip install -r website/REQUIREMENTS.txt
|
|
- pip install .
|
|
|
|
script:
|
|
- nosetests --with-coverage --cover-package=pytaxonomies -d
|
|
|
|
after_success:
|
|
- codecov
|
|
- coveralls
|