From 90e0bcb6f861c81515cc18cb067a624496956bce Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 14 Feb 2022 17:53:55 +0100 Subject: [PATCH] test(playout): add bandit linter check --- playout/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playout/Makefile b/playout/Makefile index 6f02a26f4..681359164 100644 --- a/playout/Makefile +++ b/playout/Makefile @@ -5,7 +5,8 @@ include ../tools/python.mk PIP_INSTALL := --editable .[dev] PYLINT_ARG := libretime_liquidsoap libretime_playout || true MYPY_ARG := libretime_liquidsoap libretime_playout || true +BANDIT_ARG := libretime_liquidsoap libretime_playout || true format: .format -lint: .format-check .pylint .mypy +lint: .format-check .pylint .mypy .bandit clean: .clean