From 3db33d3d7062385ea8fa186684f94599c7efe488 Mon Sep 17 00:00:00 2001 From: Jake Arkinstall <65358059+jake-arkinstall@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:01:06 +0100 Subject: [PATCH] Re-added pytest to mypy ignore list --- mypy.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mypy.ini b/mypy.ini index a136fddc..cf4470d7 100644 --- a/mypy.ini +++ b/mypy.ini @@ -19,6 +19,10 @@ warn_no_return = False warn_return_any = True warn_unreachable = True +[mypy-pytest.*] +ignore_missing_imports = True +ignore_errors = True + [mypy-lark.*] ignore_missing_imports = True ignore_errors = True