Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading