@@ -106,20 +106,15 @@ ignore = [
106
106
]
107
107
"tests/**" = [
108
108
" S101" , # Use of `assert` detected
109
- # "S105", "S106", # todo: Possible hardcoded password: ...
110
109
" S301" , # `pickle` and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue
111
- # "S113", # todo: Probable use of requests call without timeout
112
110
" S311" , # todo: Standard pseudo-random generators are not suitable for cryptographic purposes
113
111
" S108" , # todo: Probable insecure usage of temporary file or directory: "/tmp/sys-customizations-sync"
114
- # "S202", # Uses of `tarfile.extractall()`
115
112
" S403" , # `pickle`, `cPickle`, `dill`, and `shelve` modules are possibly insecure
116
113
" S404" , # `subprocess` module is possibly insecure
117
114
" S602" , # todo: `subprocess` call with `shell=True` identified, security issue
118
115
" S603" , # todo: `subprocess` call: check for execution of untrusted input
119
116
" S605" , # todo: Starting a process with a shell: seems safe, but may be changed in the future; consider rewriting without `shell`
120
117
" S607" , # todo: Starting a process with a partial executable path
121
- # "RET504", # todo:Unnecessary variable assignment before `return` statement
122
- # "PT004", # todo: Fixture `tmpdir_unittest_fixture` does not return anything, add leading underscore
123
118
" PT012" , # todo: `pytest.raises()` block should contain a single simple statement
124
119
" PT019" , # todo: Fixture `_` without value is injected as parameter, use `@pytest.mark.usefixtures` instead
125
120
]
0 commit comments