.travis.yml 458 B

123456789101112131415161718192021222324
  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. - pipenv run mypy freesurfer_surface tests
  17. after_success:
  18. - pip install coveralls
  19. - coveralls