.travis.yml 353 B

12345678910111213141516171819202122
  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 pylint freesurfer_surface tests/*
  14. - pipenv run pytest --cov=freesurfer_surface --cov-report=term-missing --cov-fail-under=100
  15. after_success:
  16. - pip install coveralls
  17. - coveralls