File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 24
24
matrix :
25
25
python-version : ["3.10"]
26
26
install : ['pip']
27
- check : ['style', 'doctest']
27
+ check : ['style', 'doctest', 'typing' ]
28
28
pip-flags : ['']
29
29
depends : ['REQUIREMENTS']
30
30
env :
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ test = [
68
68
" pytest-httpserver" ,
69
69
" pytest-xdist" ,
70
70
]
71
+ typing = [" mypy" ]
71
72
zstd = [" pyzstd >= 0.14.3" ]
72
73
73
74
[tool .setuptools ]
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ elif [ "${CHECK_TYPE}" == "test" ]; then
25
25
cp ../.coveragerc .
26
26
pytest --doctest-modules --doctest-plus --cov nibabel --cov-report xml \
27
27
--junitxml=test-results.xml -v --pyargs nibabel -n auto
28
+ elif [ " ${CHECK_TYPE} " == " typing" ]; then
29
+ mypy nibabel
28
30
else
29
31
false
30
32
fi
You can’t perform that action at this time.
0 commit comments