test(api): add bandit linter check

This commit is contained in:
jo 2022-02-14 17:53:18 +01:00 committed by Kyle Robbertze
parent 892a2a5f78
commit 924b7f8f46
1 changed files with 2 additions and 1 deletions

View File

@ -5,9 +5,10 @@ include ../tools/python.mk
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := libretime_api || true
MYPY_ARG := libretime_api || true
BANDIT_ARG := libretime_api || true
format: .format
lint: .format-check .pylint .mypy
lint: .format-check .pylint .mypy .bandit
clean: .clean
test: $(VENV)