fix: Remove 'tests' from Bandit exclude_dirs to ensure security checks cover all test files

This commit is contained in:
2025-11-12 11:44:09 +01:00
parent 2214bbe64f
commit d89b09fa80

View File

@@ -39,6 +39,6 @@ skip_empty = true
show_missing = true
[tool.bandit]
exclude_dirs = ["tests", "alembic", "scripts"]
exclude_dirs = ["alembic", "scripts"]
skips = ["B101", "B601"] # B101: assert_used, B601: shell_injection (may be false positives)