From a26f3824bb540f710ca35b3383fbe1786bde25ec Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 14 Feb 2022 17:54:52 +0100 Subject: [PATCH] test(shared): add bandit linter check --- shared/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shared/Makefile b/shared/Makefile index f044615c2..66aef5bc6 100644 --- a/shared/Makefile +++ b/shared/Makefile @@ -5,9 +5,10 @@ include ../tools/python.mk PIP_INSTALL = --editable .[dev] PYLINT_ARG = libretime_shared tests MYPY_ARG = libretime_shared +BANDIT_ARG := libretime_shared PYTEST_ARG = --cov=libretime_shared tests format: .format -lint: .format-check .pylint .mypy +lint: .format-check .pylint .mypy .bandit test: .pytest clean: .clean