.travis.yml 241 B

12345678910111213141516171819
  1. language: python
  2. python:
  3. - 3.6
  4. - 3.6-dev
  5. - 3.7
  6. - 3.7-dev
  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_volume_reader
  15. - pipenv run pytest