Use $PYTHON when running mypy
Make sure to run mypy with the desired Python version. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
c3b178768f
commit
4738b96d75
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ can_mypy () {
|
||||||
# minimum version is required. The check is not just "type mypy"
|
# minimum version is required. The check is not just "type mypy"
|
||||||
# because that passes if a mypy exists but is not installed for the current
|
# because that passes if a mypy exists but is not installed for the current
|
||||||
# python version.
|
# python version.
|
||||||
mypy --version 2>/dev/null >/dev/null
|
$PYTHON -m mypy --version 2>/dev/null >/dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
# With just a --can-xxx option, check whether the tool for xxx is available
|
# With just a --can-xxx option, check whether the tool for xxx is available
|
||||||
|
@ -77,7 +77,7 @@ $PYTHON -m pylint -j 2 scripts/mbedtls_dev/*.py scripts/*.py tests/scripts/*.py
|
||||||
if can_mypy; then
|
if can_mypy; then
|
||||||
echo
|
echo
|
||||||
echo 'Running mypy ...'
|
echo 'Running mypy ...'
|
||||||
mypy scripts/*.py tests/scripts/*.py ||
|
$PYTHON -m mypy scripts/*.py tests/scripts/*.py ||
|
||||||
ret=1
|
ret=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue