File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2424 matrix :
2525 python-version : ["3.10"]
2626 install : ['pip']
27- check : ['style', 'doctest']
27+ check : ['style', 'doctest', 'typing' ]
2828 pip-flags : ['']
2929 depends : ['REQUIREMENTS']
3030 env :
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ test = [
6868 " pytest-httpserver" ,
6969 " pytest-xdist" ,
7070]
71+ typing = [" mypy" ]
7172zstd = [" pyzstd >= 0.14.3" ]
7273
7374[tool .setuptools ]
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ elif [ "${CHECK_TYPE}" == "test" ]; then
2525 cp ../.coveragerc .
2626 pytest --doctest-modules --doctest-plus --cov nibabel --cov-report xml \
2727 --junitxml=test-results.xml -v --pyargs nibabel -n auto
28+ elif [ " ${CHECK_TYPE} " == " typing" ]; then
29+ mypy nibabel
2830else
2931 false
3032fi
You can’t perform that action at this time.
0 commit comments