[CI/Build] Add error matching config for mypy (#9512)
This commit is contained in:
@ -2,6 +2,10 @@
|
||||
|
||||
CI=${1:-0}
|
||||
|
||||
if [ $CI -eq 1 ]; then
|
||||
set -e
|
||||
fi
|
||||
|
||||
run_mypy() {
|
||||
echo "Running mypy on $1"
|
||||
if [ $CI -eq 1 ] && [ -z "$1" ]; then
|
||||
|
||||
Reference in New Issue
Block a user