.travis.yml 195 B

1234567891011121314151617
  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. install:
  10. - pip install pipenv
  11. - pipenv sync --dev
  12. script:
  13. - pipenv run pylint freesurfer_volume_reader
  14. - pipenv run pytest