Skip to content

Commit 90607d1

Browse files
committed
fixup! Edit Pipeline Trigger
1 parent b00e865 commit 90607d1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ stages:
256256

257257

258258
def output_var(var_name, is_output, var_value):
259-
os.environ[var_name] = val
259+
os.environ[var_name] = var_value
260260
print(f"##vso[task.setvariable variable={var_name};isOutput={is_output}]{var_value}")
261261

262262
def encode_and_compress(file_path):
@@ -303,10 +303,10 @@ stages:
303303
LINUX_GOCOV_OUT: $[ dependencies.linux.outputs['report.GOCOV_OUT_XML'] ]
304304
LINUX_JUNIT_XML: $[ dependencies.linux.outputs['report.JUNIT_XML'] ]
305305
steps:
306-
- task: UsePythonVersion@0
307-
inputs:
308-
versionSpec: '3.x' # string. Required. Version spec. Default: 3.x.
309-
addToPath: true
306+
# - task: UsePythonVersion@0
307+
# inputs:
308+
# versionSpec: '3.x' # string. Required. Version spec. Default: 3.x.
309+
# addToPath: true
310310

311311
- task: PythonScript@0
312312
displayName: "Write Test Output Artifacts"

0 commit comments

Comments
 (0)