From 8a84a68e212a3d45e9e79c310d5abbc111820af7 Mon Sep 17 00:00:00 2001 From: Adrian Edwards Date: Mon, 16 Mar 2026 15:42:25 -0400 Subject: [PATCH] prevent bandit from security scanning unit tests Signed-off-by: Adrian Edwards --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1929ca83b0..3c245a302c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -166,3 +166,6 @@ ignore_missing_imports = true follow_imports = "skip" disallow_untyped_defs = false exclude_gitignore = true + +[tool.bandit] +exclude_dirs = ["tests"]