.travis.yml 379 B

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