test(api_client): add bandit linter check

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

View File

@ -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