From 9d8196c9caf1b09536430e1fec62898f59b6d456 Mon Sep 17 00:00:00 2001 From: Cecille Freeman Date: Fri, 18 Oct 2024 10:03:09 -0400 Subject: [PATCH] testing - I can't repro locally --- scripts/tests/matter_yaml_linter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tests/matter_yaml_linter.py b/scripts/tests/matter_yaml_linter.py index 7fa835e17f5b81..c545a82e2f6882 100644 --- a/scripts/tests/matter_yaml_linter.py +++ b/scripts/tests/matter_yaml_linter.py @@ -55,6 +55,7 @@ def check_manual_steps(): bad_tests = set() for test in AllChipToolYamlTests(use_short_run_name=False): cmd = f'git diff HEAD^..HEAD --unified=0 -- {test.run_name}' + print(f'Running cmd: {cmd}') output = subprocess.check_output(cmd, shell=True).decode().splitlines() user_prompt_added = [line for line in output if re.search(r'^\+.*UserPrompt.*', line)] user_prompt_removed = [line for line in output if re.search(r'^\-.*UserPrompt.*', line)]