diff --git a/pyproject.toml b/pyproject.toml index 5fe695694..34cdf18ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -403,6 +403,7 @@ classmethod-decorators = ["pydantic.validator", "pydantic.root_validator"] "S103", # Allow `os.chmod` setting a permissive mask `0o555` on file or directory "S108", # Allow Probable insecure usage of temporary file or directory "PLR0913", # Allow many arguments for test functions (useful if we need many fixtures) + "PLR0917", # Allow many positional arguments for test functions (same reason as PLR0913) "PLR2004", # Allow magic values in tests "SLF", # Allow accessing private members from tests. "FBT001", # Boolean-typed parametrized tests can be useful