We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc0f9a commit 90835cfCopy full SHA for 90835cf
test.ps1
@@ -3,7 +3,17 @@ $ErrorActionPreference = "Stop"
3
$dotnet = & "$PSScriptRoot/build/resolve-dotnet.ps1"
4
5
& $dotnet test "$PSScriptRoot\tests\Tests.AzureAppConfiguration\Tests.AzureAppConfiguration.csproj" --logger trx
6
+
7
+if ($LASTEXITCODE -ne 0) {
8
+ exit $LASTEXITCODE
9
+}
10
11
& $dotnet test "$PSScriptRoot\tests\Tests.AzureAppConfiguration.AspNetCore\Tests.AzureAppConfiguration.AspNetCore.csproj" --logger trx
12
13
14
15
16
17
& $dotnet test "$PSScriptRoot\tests\Tests.AzureAppConfiguration.Functions.Worker\Tests.AzureAppConfiguration.Functions.Worker.csproj" --logger trx
18
19
exit $LASTEXITCODE
0 commit comments