diff options
-rw-r--r-- | pyproject.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e6c1020 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[tool.mypy] +warn_redundant_casts = true +warn_unused_configs = true +check_untyped_defs = true + +[[tool.mypy.overrides]] +module = [ + "fixtures.*", + "testresources.*", + "testscenarios.*", + "pbr.*", +] +ignore_missing_imports = true |