From a73dacc6b58f38dc8396884ba0e1f264e6e19dfb Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 14 Feb 2022 09:35:49 +0100 Subject: [PATCH] chore(analyzer): add bandit linter to analyzer --- analyzer/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/analyzer/Makefile b/analyzer/Makefile index 48ae9f530..9b5748b15 100644 --- a/analyzer/Makefile +++ b/analyzer/Makefile @@ -5,10 +5,11 @@ include ../tools/python.mk PIP_INSTALL := --editable .[dev] PYLINT_ARG := libretime_analyzer tests || true MYPY_ARG := libretime_analyzer tests || true +BANDIT_ARG := libretime_analyzer || true PYTEST_ARG := --cov=libretime_analyzer tests format: .format -lint: .format-check .pylint .mypy +lint: .format-check .pylint .mypy .bandit fixtures: bash tests/fixtures/generate.sh