mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
test: Do not swallow flake8 exit code
This commit is contained in:
parent
4ede05d421
commit
7dda912e1c
1 changed files with 11 additions and 3 deletions
|
@ -90,12 +90,20 @@ elif PYTHONWARNINGS="ignore" flake8 --version | grep -q "Python 2"; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
PYTHONWARNINGS="ignore" flake8 --ignore=B,C,E,F,I,N,W --select=$(IFS=","; echo "${enabled[*]}") $(
|
||||
EXIT_CODE=0
|
||||
|
||||
if ! PYTHONWARNINGS="ignore" flake8 --ignore=B,C,E,F,I,N,W --select=$(IFS=","; echo "${enabled[*]}") $(
|
||||
if [[ $# == 0 ]]; then
|
||||
git ls-files "*.py"
|
||||
else
|
||||
echo "$@"
|
||||
fi
|
||||
)
|
||||
); then
|
||||
EXIT_CODE=1
|
||||
fi
|
||||
|
||||
mypy --ignore-missing-imports $(git ls-files "test/functional/*.py")
|
||||
if ! mypy --ignore-missing-imports $(git ls-files "test/functional/*.py"); then
|
||||
EXIT_CODE=1
|
||||
fi
|
||||
|
||||
exit $EXIT_CODE
|
||||
|
|
Loading…
Reference in a new issue