Skip to content

Commit 4758771

Browse files
committed
Update file
1 parent 3097975 commit 4758771

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

AzureDevOps/DistributeTests.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ $testsToRun= @()
3131
# slice test files to make sure each agent gets unique test file to execute
3232
For ($i=$agentNumber; $i -le $testCount;) {
3333
$file = $tests[$i-1]
34-
$testsToRun = $testsToRun + $file
34+
35+
$fileName = [System.IO.Path]::GetFileNameWithoutExtension($file.Name)
36+
$testsToRun += "$base/*"
3537
Write-Host "Added $file"
3638
$i = $i + $totalAgents
3739
}

0 commit comments

Comments
 (0)