From b78b76a692d7cc00871a4bf28ce978b096da63fa Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Mon, 16 Dec 2024 14:29:55 -0800 Subject: [PATCH] ci: Add flake8 to gitlabci container - This is needed to run code quality check in the GitLab CI pipeline. Not sure how it work before this. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- .ci/Containerfile.gitlabci | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/Containerfile.gitlabci b/.ci/Containerfile.gitlabci index a4b4c6b9d..7165be9c7 100644 --- a/.ci/Containerfile.gitlabci +++ b/.ci/Containerfile.gitlabci @@ -19,7 +19,8 @@ RUN apt-get build-dep -y . RUN apt-get install -y build-essential \ # Test dependencies sshpass parted \ - sudo python3-pip + sudo python3-pip \ + python3-flake8 # Module dependencies RUN apt-get install -y $(./run --list-dependencies)