ci: fix bandit B101
Browse files- pyproject.toml +4 -0
pyproject.toml
CHANGED
|
@@ -74,3 +74,7 @@ check_untyped_defs = true
|
|
| 74 |
testpaths = ["tests"]
|
| 75 |
python_files = ["test_*.py"]
|
| 76 |
addopts = "-ra -q --cov=llmdataparser --cov-report=term-missing"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
testpaths = ["tests"]
|
| 75 |
python_files = ["test_*.py"]
|
| 76 |
addopts = "-ra -q --cov=llmdataparser --cov-report=term-missing"
|
| 77 |
+
|
| 78 |
+
[tool.bandit]
|
| 79 |
+
exclude_dirs = ["tests"]
|
| 80 |
+
skips = ["B101"]
|