From c2ce2875d35f59b24d58780ee79d68367def1e47 Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Thu, 16 Nov 2023 15:43:14 -0800 Subject: [PATCH] Run mypy on generated tests --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2aa2b6c2c..366b92010 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ reportUnnecessaryTypeIgnoreComment = true [tool.mypy] follow_imports = "silent" python_version = "3.10" -files = ["tests/test_exports.py"] +files = ["tests/test_generated_examples.py", "tests/test_exports.py"] disallow_untyped_calls = true disallow_untyped_defs = true warn_unused_ignores = true