PyMISPGalaxies/.travis.yml

20 lines
280 B
YAML
Raw Normal View History

2017-07-25 18:04:15 +02:00
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