From 0b5e034a9208157df0b2ad2fc03826c7bd0f5e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 7 Nov 2018 13:03:07 +0100 Subject: [PATCH] Fix MyPy errors when running without boto3 installed --- tests/test_mypy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mypy.py b/tests/test_mypy.py index bd9e1e4..592f44c 100644 --- a/tests/test_mypy.py +++ b/tests/test_mypy.py @@ -9,7 +9,7 @@ import blender_asset_tracer class MypyRunnerTest(unittest.TestCase): def test_run_mypy(self): path = pathlib.Path(blender_asset_tracer.__file__).parent - result = mypy.api.run(['--incremental', str(path)]) + result = mypy.api.run(['--incremental', '--ignore-missing-imports', str(path)]) stdout, stderr, status = result