.travis.yml 373 B

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