From cd9b7158ec66d37088cf92170bde05c64d23ae13 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 15 May 2019 14:20:08 -0700 Subject: [PATCH] fix CI (#2992) --- tests/mypy_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mypy_test.py b/tests/mypy_test.py index 5f655898c..d4ffca111 100755 --- a/tests/mypy_test.py +++ b/tests/mypy_test.py @@ -141,7 +141,7 @@ def main(): print("running mypy", ' '.join(flags), "# with", len(files), "files") try: if not args.dry_run: - mypy_main('') + mypy_main('', sys.stdout, sys.stderr) except SystemExit as err: code = max(code, err.code) if code: