2016-04-18 11:46:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-06-04 21:03:14 +02:00
|
|
|
echo '+ ./tools/run-mypy --linecoverage-report'
|
|
|
|
./tools/run-mypy --linecoverage-report
|
2016-05-20 17:17:52 +02:00
|
|
|
retcode="$?"
|
|
|
|
|
|
|
|
if [ "$retcode" == "0" ]; then
|
2016-05-05 22:32:17 +02:00
|
|
|
echo "The mypy static type checker for python detected no errors!"
|
|
|
|
else
|
|
|
|
echo
|
|
|
|
echo "The mypy static type checker for Python threw some errors,"
|
|
|
|
echo "which indicates a bug in your code or incorrect type annotations."
|
|
|
|
echo "Please see http://zulip.readthedocs.io/en/latest/mypy.html for details"
|
|
|
|
echo "on mypy, how Zulip is using mypy, and how to debug common issues."
|
2016-05-20 17:17:52 +02:00
|
|
|
exit "$retcode"
|
2016-05-05 22:32:17 +02:00
|
|
|
fi
|