.travis.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. language: python
  2. python:
  3. - 3.5
  4. - 3.6
  5. - 3.7
  6. - 3.7-dev
  7. - 3.8
  8. - 3.8-dev
  9. # required for python >= 3.7
  10. dist: xenial
  11. env:
  12. # https://pypi.org/project/pandas/#history
  13. - PANDAS_VERSION=
  14. - PANDAS_VERSION=0.24.*
  15. - PANDAS_VERSION=0.23.*
  16. - PANDAS_VERSION=0.22.*
  17. - PANDAS_VERSION=0.21.*
  18. # https://travis-ci.org/fphammerle/freesurfer-volume-reader/builds/525556257
  19. matrix:
  20. exclude:
  21. - python: 3.7
  22. env: PANDAS_VERSION=0.21.*
  23. - python: 3.7
  24. env: PANDAS_VERSION=0.22.*
  25. - python: 3.7-dev
  26. env: PANDAS_VERSION=0.21.*
  27. - python: 3.7-dev
  28. env: PANDAS_VERSION=0.22.*
  29. # >/tmp/pip-install-g4jx0np4/numpy/_configtest.c:6: undefined reference to `exp'
  30. # https://travis-ci.org/github/fphammerle/freesurfer-stats/jobs/683704331#L437
  31. - python: 3.8
  32. env: PANDAS_VERSION=0.21.*
  33. # https://travis-ci.org/github/fphammerle/freesurfer-stats/jobs/683704330#L437
  34. - python: 3.8
  35. env: PANDAS_VERSION=0.22.*
  36. - python: 3.8-dev
  37. env: PANDAS_VERSION=0.21.*
  38. - python: 3.8-dev
  39. env: PANDAS_VERSION=0.22.*
  40. install:
  41. - pip install pipenv
  42. - pipenv sync --dev
  43. - if [ ! -z "$PANDAS_VERSION" ]; then
  44. pipenv install --selective-upgrade "pandas==$PANDAS_VERSION";
  45. fi
  46. - pipenv graph
  47. script:
  48. - pipenv run pylint freesurfer_stats tests/*
  49. - pipenv run pytest --cov=freesurfer_stats --cov-report=term-missing --cov-fail-under=100
  50. after_success:
  51. - pip install coveralls
  52. - coveralls