diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..e6c10209 --- /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