.travis.yml 415 B

1234567891011121314151617181920212223
  1. language: python
  2. python:
  3. - 3.5
  4. - 3.6
  5. - 3.7
  6. # required for python >= 3.7
  7. dist: xenial
  8. install:
  9. - pip install pipenv
  10. - pipenv sync --dev
  11. - pipenv graph
  12. script:
  13. - pipenv run pytest --cov=freesurfer_surface --cov-report=term-missing --cov-fail-under=100
  14. - pipenv run pylint --load-plugins=pylint_import_requirements freesurfer_surface
  15. - pipenv run pylint tests/*
  16. after_success:
  17. - pip install coveralls
  18. - coveralls