From 1087716b19f93277722d2937a279851ef44ef208 Mon Sep 17 00:00:00 2001 From: Arkadiusz Bokowy Date: Thu, 22 Dec 2022 16:06:34 +0100 Subject: [PATCH] Add flake8 checker to chip-build Docker image (#24171) --- .../docker/images/chip-build/Dockerfile | 17 ++++++++++++++++- integrations/docker/images/chip-build/version | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/integrations/docker/images/chip-build/Dockerfile b/integrations/docker/images/chip-build/Dockerfile index c7c99fea34f87b..57eb0030689518 100644 --- a/integrations/docker/images/chip-build/Dockerfile +++ b/integrations/docker/images/chip-build/Dockerfile @@ -95,7 +95,22 @@ RUN set -x \ && : # last line RUN set -x \ - && pip3 install attrs coloredlogs PyGithub pygit future portpicker mobly click cxxfilt ghapi pandas tabulate \ + && pip3 install \ + attrs \ + click \ + coloredlogs \ + cxxfilt \ + flake8 \ + future \ + ghapi \ + mobly \ + pandas \ + portpicker \ + pygit \ + PyGithub \ + tabulate \ + # Cleanup + && pip3 cache purge \ && : # last line # build and install gn diff --git a/integrations/docker/images/chip-build/version b/integrations/docker/images/chip-build/version index d4562f8125ae06..c4423218f2e84f 100644 --- a/integrations/docker/images/chip-build/version +++ b/integrations/docker/images/chip-build/version @@ -1 +1 @@ -0.6.25 Version bump reason: Updating ZAP to v2022.12.20-nightly +0.6.26 Version bump reason: Add flake8 to base image