PyMISPGalaxies/.travis.yml

20 lines
295 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:
2019-01-22 16:13:33 +01:00
- pip install pipenv
- pipenv install -d
2017-07-25 18:04:15 +02:00
script:
2019-01-22 16:13:33 +01:00
- pipenv run nosetests --with-coverage --cover-package=pymispgalaxies -d
2017-07-25 18:04:15 +02:00
after_success:
2019-01-22 16:13:33 +01:00
- pipenv run codecov
- pipenv run coveralls