From: Iker Pedrosa Date: Mon, 1 Sep 2025 13:02:17 +0000 (+0200) Subject: tests/system/pyproject.toml: add mypy rules X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08028bb1a8a46c64d34acf1854d2c1d94da6b8be;p=thirdparty%2Fshadow.git tests/system/pyproject.toml: add mypy rules Signed-off-by: Iker Pedrosa --- diff --git a/tests/system/pyproject.toml b/tests/system/pyproject.toml index 6e34cc0c2..88cc445d0 100644 --- a/tests/system/pyproject.toml +++ b/tests/system/pyproject.toml @@ -2,6 +2,14 @@ module = "jc.*" ignore_missing_imports = true +[[tool.mypy.overrides]] +module = "pytest" +ignore_missing_imports = true + +[[tool.mypy.overrides]] +module = "pytest_mh.*" +ignore_missing_imports = true + [tool.isort] line_length = 119 profile = "black"