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.
2 parents 1f405f6 + 6359b4a commit 2ba205dCopy full SHA for 2ba205d
scripts/build-cli.ps1
@@ -9,7 +9,7 @@
9
.PARAMETER SkipTests
10
Skip running unit tests
11
.PARAMETER FailOnTestFailure
12
- Exit with error code if tests fail (default: false, only warns)
+ Exit with error code if tests fail (default: true, stops build on test failures)
13
.PARAMETER SkipMsix
14
Skip MSIX bundle creation
15
.PARAMETER Stable
@@ -27,7 +27,7 @@
27
param(
28
[switch]$Clean = $false,
29
[switch]$SkipTests = $false,
30
- [switch]$FailOnTestFailure = $false,
+ [switch]$FailOnTestFailure = $true,
31
[switch]$SkipMsix = $true,
32
[switch]$Stable = $false
33
)
0 commit comments