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 <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2024-12-16 14:29:55 -08:00 committed by James Valleroy
parent 86ca8164d3
commit b78b76a692
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

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