Skip to content

Commit 6af1c00

Browse files
committed
remove
1 parent d0339e0 commit 6af1c00

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,20 +106,15 @@ ignore = [
106106
]
107107
"tests/**" = [
108108
"S101", # Use of `assert` detected
109-
# "S105", "S106", # todo: Possible hardcoded password: ...
110109
"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
112110
"S311", # todo: Standard pseudo-random generators are not suitable for cryptographic purposes
113111
"S108", # todo: Probable insecure usage of temporary file or directory: "/tmp/sys-customizations-sync"
114-
# "S202", # Uses of `tarfile.extractall()`
115112
"S403", # `pickle`, `cPickle`, `dill`, and `shelve` modules are possibly insecure
116113
"S404", # `subprocess` module is possibly insecure
117114
"S602", # todo: `subprocess` call with `shell=True` identified, security issue
118115
"S603", # todo: `subprocess` call: check for execution of untrusted input
119116
"S605", # todo: Starting a process with a shell: seems safe, but may be changed in the future; consider rewriting without `shell`
120117
"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
123118
"PT012", # todo: `pytest.raises()` block should contain a single simple statement
124119
"PT019", # todo: Fixture `_` without value is injected as parameter, use `@pytest.mark.usefixtures` instead
125120
]

0 commit comments

Comments
 (0)