We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 309f48d commit be4018eCopy full SHA for be4018e
pyproject.toml
@@ -191,3 +191,6 @@ ignore = [
191
"D203",
192
"D212",
193
]
194
+
195
+[tool.bandit]
196
+exclude_dirs = ["cwl_utils/tests"]
tox.ini
@@ -32,7 +32,7 @@ passenv =
32
deps =
33
py3{10,11,12,13,14}-{unit,mypy}: -rtest-requirements.txt
34
py3{10,11,12,13,14}-lint: -rlint-requirements.txt
35
- py3{10,11,12,13,14}-bandit: bandit
+ py3{10,11,12,13,14}-bandit: bandit[toml]
36
py3{10,11,12,13,14}-mypy: -rmypy-requirements.txt
37
38
setenv =
@@ -41,7 +41,7 @@ setenv =
41
commands =
42
py3{10,11,12,13,14}-unit: python -m pip install -U pip setuptools wheel
43
py3{10,11,12,13,14}-unit: make coverage-report coverage.xml PYTEST_EXTRA={posargs}
44
- py3{10,11,12,13,14}-bandit: bandit --recursive cwl_utils
+ py3{10,11,12,13,14}-bandit: bandit --configfile pyproject.toml --recursive cwl_utils
45
py3{10,11,12,13,14}-lint: make flake8
46
py3{10,11,12,13,14}-lint: make format-check
47
py3{10,11,12,13,14}-mypy: make mypy
0 commit comments