Skip to content

Commit 5a1fbda

Browse files
committed
fixup! Edit Pipeline Trigger
1 parent ac5b889 commit 5a1fbda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.pipelines/templates/run-unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ stages:
123123
open(report_xml, 'a').close()
124124
125125
# Run make tools
126-
subprocess.check_call(['make', 'tools'], shell=True)
126+
subprocess.run('make tools', capture_output=True, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
127127
128128
# Function to run the test and capture output
129129
def run_test():

0 commit comments

Comments
 (0)