mirror of https://github.com/MISP/PyMISPGalaxies
20 lines
280 B
YAML
20 lines
280 B
YAML
|
language: python
|
||
|
|
||
|
cache: pip
|
||
|
|
||
|
python:
|
||
|
- "3.6"
|
||
|
- "3.6-dev"
|
||
|
- "nightly"
|
||
|
|
||
|
install:
|
||
|
- pip install coveralls codecov jsonschema
|
||
|
- pip install .
|
||
|
|
||
|
script:
|
||
|
- nosetests --with-coverage --cover-package=pymispgalaxies -d
|
||
|
|
||
|
after_success:
|
||
|
- codecov
|
||
|
- coveralls
|