.travis.yml 247 B

1234567891011121314151617181920
  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_volume_reader
  16. - pipenv run pytest