From 499f852e37d476fb5720054636e045d37a714fc9 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Fri, 15 Jun 2018 16:46:59 -0700 Subject: [PATCH] add --show-traceback to mypy_test.py flags (#2236) This makes debugging easier. --- tests/mypy_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/mypy_test.py b/tests/mypy_test.py index cb042d83f..aebf1999a 100755 --- a/tests/mypy_test.py +++ b/tests/mypy_test.py @@ -132,6 +132,7 @@ def main(): flags = ['--python-version', '%d.%d' % (major, minor)] flags.append('--strict-optional') flags.append('--no-site-packages') + flags.append('--show-traceback') if args.no_implicit_optional: flags.append('--no-implicit-optional') if args.warn_unused_ignores: