Skip to content

Commit e2b7561

Browse files
committed
fix missing configuration in RunTests.ps1 scripts
1 parent a55cbeb commit e2b7561

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Scripts/RunTests.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
param (
2626
[Parameter(HelpMessage = "Configuration type to build, default to Debug")]
2727
[ValidateSet('Debug', 'Release')]
28-
[string] $Configurations = 'Debug'
28+
[string[]] $Configurations = 'Debug'
2929
)
3030

3131
$ErrorActionPreference = "Stop"
@@ -86,4 +86,6 @@ function RunTests {
8686
}
8787

8888
# Run tests for each configuration
89+
foreach ($config in $Configurations) {
8990
RunTests -Configuration $config
91+
}

0 commit comments

Comments
 (0)