From: John Litborn <11260241+jakkdl@users.noreply.github.com> Date: Fri, 6 Oct 2023 01:15:35 +0000 (+0200) Subject: exclude tests/data/.* from mypy (#3917) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/27c05e1e24e02c62d0c2de2a1ab0673b2c2ca653 exclude tests/data/.* from mypy (#3917) --- diff --git a/mypy.ini b/mypy.ini index 95ec22d..ad91618 100644 --- a/mypy.ini +++ b/mypy.ini @@ -39,3 +39,8 @@ ignore_missing_imports = True [mypy-_black_version.*] ignore_missing_imports = True + +# CI only checks src/, but in case users are running LSP or similar we explicitly ignore +# errors in test data files. +[mypy-tests.data.*] +ignore_errors = True