From d89b09fa80e1dc0d770bb7a9c2388a535d1e6b43 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Wed, 12 Nov 2025 11:44:09 +0100 Subject: [PATCH] fix: Remove 'tests' from Bandit exclude_dirs to ensure security checks cover all test files --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 621af12..e5c54b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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)