From 786ad281cd2333c08f412a47850d9c94b6446d0f Mon Sep 17 00:00:00 2001 From: Ilya Konstantinov Date: Sat, 14 Aug 2021 21:55:32 -0400 Subject: [PATCH] Disable soft error limit --- src/pytest_mypy_testing/plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pytest_mypy_testing/plugin.py b/src/pytest_mypy_testing/plugin.py index bdef273..2176b96 100644 --- a/src/pytest_mypy_testing/plugin.py +++ b/src/pytest_mypy_testing/plugin.py @@ -150,6 +150,7 @@ def _run_mypy(self, filename: str) -> MypyResult: "--no-color-output", "--no-error-summary", "--no-pretty", + "--soft-error-limit=-1", "--no-silence-site-packages", "--no-warn-unused-configs", "--show-column-numbers",