From 6f5beb70e4819b69f783886805e4fea89c79184e Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 10 Oct 2022 16:23:03 +0800 Subject: [PATCH] ci: ignore build_test_app when checking build_test_rules --- tools/ci/check_build_test_rules.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ci/check_build_test_rules.py b/tools/ci/check_build_test_rules.py index aa61aea67a..7f24243150 100755 --- a/tools/ci/check_build_test_rules.py +++ b/tools/ci/check_build_test_rules.py @@ -433,7 +433,8 @@ if __name__ == '__main__': if check_all: check_dirs = {IDF_PATH} - _exclude_dirs = [os.path.join(IDF_PATH, 'tools', 'unit-test-app')] + _exclude_dirs = [os.path.join(IDF_PATH, 'tools', 'unit-test-app'), + os.path.join(IDF_PATH, 'tools', 'test_build_system', 'build_test_app')] else: _exclude_dirs = []