.travis.yml 359 B

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