From d6082833b9113a822258852f17f50e7bbc998f12 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Tue, 16 Jul 2024 19:22:04 +0200 Subject: [PATCH] CI: fix missing bandit git We have to install badit[baseline] as upstream removed support for git in basic installation. Signed-off-by: Martin Basti --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index bdc856fd1..7b75790ff 100755 --- a/test.sh +++ b/test.sh @@ -107,7 +107,7 @@ case ${ACTION} in ;; "bandit") setup_osbs - $RUN "${PIP_INST[@]}" bandit + $RUN "${PIP_INST[@]}" bandit[baseline] TEST_CMD="bandit-baseline -r atomic_reactor -ll -ii" ;; *)