diff mbox series

[ovs-dev,6/6] build-aux: Enable flake8 checks for python extraction scripts.

Message ID 20231030201054.136934-7-i.maximets@ovn.org
State Accepted
Commit 28f6e7602cc0b4229a9e7e556a3f4cad3b821c3b
Delegated to: Ilya Maximets
Headers show
Series build-aux: Fix flake8 and syntax issues with python 3.12. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

Ilya Maximets Oct. 30, 2023, 8:10 p.m. UTC
These were recently updated to pass the checks, so should be
added to the list in order to avoid regressions in the future.
While at it, fixing the indentation.

Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
---
 build-aux/automake.mk | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

Comments

Eelco Chaudron Oct. 31, 2023, 8:24 a.m. UTC | #1
On 30 Oct 2023, at 21:10, Ilya Maximets wrote:

> These were recently updated to pass the checks, so should be
> added to the list in order to avoid regressions in the future.
> While at it, fixing the indentation.
>
> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>

Thanks for fixing this, and the changes look good to me.

Verified this is not causing any build, or test issues for all DPs.

Acked-by: Eelco Chaudron <echaudro@redhat.com>
diff mbox series

Patch

diff --git a/build-aux/automake.mk b/build-aux/automake.mk
index 8d7e8ae19..d65b6da6c 100644
--- a/build-aux/automake.mk
+++ b/build-aux/automake.mk
@@ -21,8 +21,12 @@  EXTRA_DIST += \
 	build-aux/xml2nroff
 
 FLAKE8_PYFILES += \
-    build-aux/dpdkstrip.py \
-    build-aux/gen_ofp_field_decoders \
-    build-aux/sodepends.py \
-    build-aux/soexpand.py \
-    build-aux/xml2nroff
+	build-aux/dpdkstrip.py \
+	build-aux/extract-ofp-actions \
+	build-aux/extract-ofp-errors \
+	build-aux/extract-ofp-fields \
+	build-aux/extract-ofp-msgs \
+	build-aux/gen_ofp_field_decoders \
+	build-aux/sodepends.py \
+	build-aux/soexpand.py \
+	build-aux/xml2nroff