We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7cf563 commit 0ece1adCopy full SHA for 0ece1ad
tools/devops/automation/scripts/TestResults.psm1
@@ -509,6 +509,7 @@ function New-ParallelTestsResults {
509
Write-Host "Test suites:"
510
Write-Host $suites.Keys
511
512
+ $tests = [System.Collections.SortedList]::new()
513
foreach ($kvp in $stageDep.GetEnumerator()) {
514
$candidate = $kvp.Value
515
if ($candidate.tests.outputs -eq $null) {
@@ -522,7 +523,6 @@ function New-ParallelTestsResults {
522
523
524
Write-Host "Outputs for $($testStage):"
525
Write-Host $outputs
- $tests = [System.Collections.SortedList]::new()
526
foreach ($name in $outputs.Keys) {
527
if ($name.EndsWith(".TESTS_LABEL")) {
528
$label = $outputs[$name]
0 commit comments