We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e9c026 commit 9d8196cCopy full SHA for 9d8196c
scripts/tests/matter_yaml_linter.py
@@ -55,6 +55,7 @@ def check_manual_steps():
55
bad_tests = set()
56
for test in AllChipToolYamlTests(use_short_run_name=False):
57
cmd = f'git diff HEAD^..HEAD --unified=0 -- {test.run_name}'
58
+ print(f'Running cmd: {cmd}')
59
output = subprocess.check_output(cmd, shell=True).decode().splitlines()
60
user_prompt_added = [line for line in output if re.search(r'^\+.*UserPrompt.*', line)]
61
user_prompt_removed = [line for line in output if re.search(r'^\-.*UserPrompt.*', line)]
0 commit comments