File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,8 @@ select = ["ALL"]
5656
5757[tool .ruff .lint .extend-per-file-ignores ]
5858"tests/*.py" = [
59- " ANN001" ,
60- # at least this three should be fine in tests:
61- " S101" , # asserts allowed in tests...
62- " ARG" , # Unused function args -> fixtures nevertheless are functionally relevant...
63- " FBT" , # Don't care about booleans as positional arguments in tests, e.g. via @pytest.mark.parametrize()
64- # The below are debateable
65- " PLR2004" , # Magic value used in comparison, ...
66- " S311" , # Standard pseudo-random generators are not suitable for cryptographic purposes
59+ " ANN001" , # missing-type-function-argument
60+ " FBT" , # flake8-boolean-trap
61+ " PLR2004" , # magic-value-comparison
62+ " S101" , # assert
6763]
You can’t perform that action at this time.
0 commit comments