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 3097975 commit 4758771Copy full SHA for 4758771
AzureDevOps/DistributeTests.ps1
@@ -31,7 +31,9 @@ $testsToRun= @()
31
# slice test files to make sure each agent gets unique test file to execute
32
For ($i=$agentNumber; $i -le $testCount;) {
33
$file = $tests[$i-1]
34
- $testsToRun = $testsToRun + $file
+
35
+ $fileName = [System.IO.Path]::GetFileNameWithoutExtension($file.Name)
36
+ $testsToRun += "$base/*"
37
Write-Host "Added $file"
38
$i = $i + $totalAgents
39
}
0 commit comments