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 363fc45 commit 014f169Copy full SHA for 014f169
pyproject.toml
@@ -143,3 +143,6 @@ ignore = [
143
"D203",
144
"D212",
145
]
146
+
147
+[tool.bandit]
148
+exclude_dirs = ["cwl_utils/tests"]
tox.ini
@@ -31,7 +31,7 @@ passenv =
31
GITHUB_*
32
deps =
33
py3{10,11,12,13,14}-lint: -rlint-requirements.txt
34
- py3{10,11,12,13,14}-bandit: bandit
+ py3{10,11,12,13,14}-bandit: bandit[toml]
35
py3{10,11,12,13,14}-mypy: -rmypy-requirements.txt
36
37
setenv =
@@ -40,7 +40,7 @@ setenv =
40
commands =
41
py3{10,11,12,13,14}-unit: python -m pip install -U pip setuptools wheel
42
py3{10,11,12,13,14}-unit: make coverage-report coverage.xml PYTEST_EXTRA={posargs}
43
- 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
44
py3{10,11,12,13,14}-lint: make flake8
45
py3{10,11,12,13,14}-lint: make format-check
46
py3{10,11,12,13,14}-mypy: make mypy
0 commit comments