From 17b70788df14218f18333967079e6d4894207fa7 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 26 Aug 2024 21:28:20 -0400 Subject: [PATCH] Internals: Run yapf3 in parallel --- Makefile.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 732669dfc..3b932402c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -441,6 +441,7 @@ PY_PROGRAMS = \ src/flexfix \ src/vlcovgen \ src/.gdbinit.py \ + test_regress/*.py \ test_regress/t/*.pf \ nodist/clang_check_attributes \ nodist/code_coverage \ @@ -454,11 +455,14 @@ PY_FILES = \ $(PY_PROGRAMS) \ nodist/code_coverage.dat \ +PY_FILES_NOLINT = \ + test_regress/t/*.py \ + YAPF = yapf3 -YAPF_FLAGS = -i +YAPF_FLAGS = -i --parallel yapf: - $(YAPF) $(YAPF_FLAGS) $(PY_FILES) + $(YAPF) $(YAPF_FLAGS) $(PY_FILES) $(PY_FILES_NOLINT) PYLINT = pylint PYLINT_FLAGS = --score=n --disable=R0801