2017-07-25 18:04:15 +02:00
|
|
|
language: python
|
|
|
|
|
|
|
|
cache: pip
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "3.6"
|
|
|
|
- "3.6-dev"
|
2019-05-06 17:18:29 +02:00
|
|
|
- "3.7-dev"
|
2017-07-25 18:04:15 +02:00
|
|
|
- "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
|