python.yml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. # sync with https://github.com/fphammerle/ical2vdir/blob/master/.github/workflows/python.yml
  2. # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
  3. # shown in badge
  4. # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/configuring-a-workflow#adding-a-workflow-status-badge-to-your-repository
  5. name: tests
  6. on:
  7. push:
  8. pull_request:
  9. schedule:
  10. - cron: '0 20 * * 5'
  11. jobs:
  12. code-format:
  13. runs-on: ubuntu-20.04
  14. strategy:
  15. matrix:
  16. python-verison: ['3.9']
  17. steps:
  18. - uses: actions/checkout@v2.4.0
  19. - uses: actions/setup-python@v2.3.1
  20. with:
  21. python-version: ${{ matrix.python-version }}
  22. - run: pip install --upgrade pipenv==2020.8.13
  23. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  24. env:
  25. PYTHON_VERSION: ${{ matrix.python-version }}
  26. - run: pipenv graph
  27. - run: pipenv run black --check .
  28. tests:
  29. runs-on: ubuntu-20.04
  30. strategy:
  31. matrix:
  32. python-version:
  33. - '3.7'
  34. - '3.8'
  35. - '3.9'
  36. pandas-version:
  37. - '' # locked version
  38. - 0.23.*
  39. - 0.24.*
  40. - 0.25.*
  41. - 1.1.* # pandas does not use semantic versioning
  42. - 1.*
  43. exclude:
  44. # > astroid.exceptions.AttributeInferenceError: '_constructor_expanddim' not found on <ClassDef.Series l.139 at 0x7f314baa6410>.
  45. # https://github.com/fphammerle/freesurfer-volume-reader/runs/1937182916
  46. - python-version: 3.7
  47. pandas-version: 1.1.*
  48. # no python3.8 wheels for pandas v0.24.2 & v0.23.4 available
  49. # https://travis-ci.org/github/fphammerle/freesurfer-stats/builds/701952350
  50. # build takes longer than 10min
  51. # https://travis-ci.org/github/fphammerle/freesurfer-stats/jobs/702077404#L199
  52. - python-version: 3.8
  53. pandas-version: 0.23.*
  54. - python-version: 3.8
  55. pandas-version: 0.24.*
  56. # > astroid.exceptions.AttributeInferenceError: '_constructor_expanddim' not found on <ClassDef.Series l.139 at 0x7f314baa6410>.
  57. # https://github.com/fphammerle/freesurfer-volume-reader/runs/1937182916
  58. - python-version: 3.8
  59. pandas-version: 1.1.*
  60. - python-version: 3.9
  61. pandas-version: 0.23.*
  62. - python-version: 3.9
  63. pandas-version: 0.24.*
  64. # > Cython-generated file 'pandas/_libs/algos.c' not found.
  65. - python-version: 3.9
  66. pandas-version: 0.25.*
  67. fail-fast: false
  68. steps:
  69. - uses: actions/checkout@v2.4.0
  70. - uses: actions/setup-python@v2.3.1
  71. with:
  72. python-version: ${{ matrix.python-version }}
  73. - run: pip install --upgrade pipenv==2020.8.13
  74. # by default pipenv picks the latest version in PATH
  75. - run: pipenv --python "$(which python)" install --deploy --dev
  76. # > TypeError: Cannot interpret '<attribute 'dtype' of 'numpy.generic' objects>' as a data type
  77. - run: pipenv run pip install numpy==1.19.5
  78. if: startsWith(matrix.pandas-version, '0.')
  79. # `pipenv install --selective-upgrade "pandas==$PANDAS_VERSION"` was not effective
  80. - run: '[ -z "$PANDAS_VERSION" ] || pipenv run pip install "pandas==$PANDAS_VERSION"'
  81. env:
  82. PANDAS_VERSION: ${{ matrix.pandas-version }}
  83. - run: pipenv graph
  84. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
  85. - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  86. # https://github.com/PyCQA/pylint/issues/352
  87. # disable parse-error due to:
  88. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  89. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  90. - run: pipenv run pylint --disable=parse-error tests/*
  91. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  92. # >=2.1.0 to support GITHUB_TOKEN
  93. # COVERALLS_REPO_TOKEN required manual configuration of secret
  94. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  95. - run: pip install 'coveralls>=2.1.0,<4'
  96. - run: coveralls
  97. env:
  98. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  99. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  100. COVERALLS_SERVICE_NAME: github
  101. test-examples: # sync with https://github.com/fphammerle/freesurfer-surface/blob/dev/.github/workflows/python.yml#L73
  102. runs-on: ubuntu-18.04
  103. strategy:
  104. matrix:
  105. python-version:
  106. - '3.7'
  107. - '3.8'
  108. - '3.9'
  109. fail-fast: false
  110. defaults:
  111. run:
  112. working-directory: examples/
  113. steps:
  114. - uses: actions/checkout@v2.4.0
  115. - uses: actions/setup-python@v2.3.1
  116. with:
  117. python-version: ${{ matrix.python-version }}
  118. - run: pip install --upgrade pipenv==2020.8.13
  119. - run: pipenv --python "$(which python)" install --deploy --dev
  120. # > RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd
  121. - run: python3 -c 'import sys; sys.exit(sys.version_info >= (3, 8))'
  122. || pipenv run pip install --no-deps numpy==1.20.1
  123. - run: pipenv graph
  124. # > the default behaviour is to abort conversion [...] if one of the cells throws an error
  125. - run: pipenv run jupyter nbconvert --execute --inplace *.ipynb
  126. # revert line specifying version of python interpreter
  127. - run: sudo apt-get update
  128. - run: sudo apt-get install --yes --no-install-recommends patchutils
  129. - run: >-
  130. git diff --unified=0
  131. | grepdiff --output-matching=hunk '^\( "version":\| "execution": {\| "<img src=\\"data:image/png;base64,\)'
  132. | patch --reverse
  133. - run: git diff --exit-code