Skip to content

Commit 86c7653

Browse files
committed
fixup! Edit Pipeline Trigger
1 parent a288a14 commit 86c7653

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,11 @@ stages:
132132
command += "--skip 'TestE2E*' -race -covermode atomic -coverprofile=windows-coverage.out ./npm/... ./cni/... ./platform/..."
133133
testing_process = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=cwd)
134134
out, err = testing_process.communicate()
135-
test_exit_code = result.returncode
135+
#test_exit_code = result.returncode
136136
print("Out:")
137137
print(out)
138138
print("Error:")
139139
print(err)
140-
print(test_exit_code)
141140
142141
command = 'go tool cover -func=windows-coverage.out'
143142
result = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=cwd)

0 commit comments

Comments
 (0)