From d5fcecbe8567307f829ddfec33a13513ec6d070d Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Wed, 5 Nov 2025 10:14:53 +0100 Subject: [PATCH] ci(pre-commit): exclude buildv2_test_app from check-readmes The `tools/test_build_system/buildv2_test_app` is a cmakev2 build system testing application, same as `build_test_app`, which should be removed from the readme check performed by check_build_test_rules.py. Signed-off-by: Frantisek Hrbata --- tools/ci/check_build_test_rules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ci/check_build_test_rules.py b/tools/ci/check_build_test_rules.py index 3ef3b0ddbc..d4d8d7aca8 100755 --- a/tools/ci/check_build_test_rules.py +++ b/tools/ci/check_build_test_rules.py @@ -337,6 +337,7 @@ if __name__ == '__main__': check_dirs = {IDF_PATH} _exclude_dirs = [ os.path.join(IDF_PATH, 'tools', 'test_build_system', 'build_test_app'), + os.path.join(IDF_PATH, 'tools', 'test_build_system', 'buildv2_test_app'), os.path.join(IDF_PATH, 'tools', 'templates', 'sample_project'), ] else: