From 8a11a583ff7cc2379cbf1dcbd09faa48e14664d6 Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 14 Feb 2022 17:53:35 +0100 Subject: [PATCH] test(api_client): add bandit linter check --- api_client/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api_client/Makefile b/api_client/Makefile index b0b515a68..83b229d64 100644 --- a/api_client/Makefile +++ b/api_client/Makefile @@ -5,9 +5,10 @@ include ../tools/python.mk PIP_INSTALL := --editable . PYLINT_ARG := libretime_api_client tests || true MYPY_ARG := libretime_api_client tests || true +BANDIT_ARG := libretime_api_client || true PYTEST_ARG := --cov=libretime_api_client tests format: .format -lint: .format-check .pylint .mypy +lint: .format-check .pylint .mypy .bandit test: .pytest clean: .clean