We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FailOnTestFailure
1 parent 1f405f6 commit 6359b4aCopy full SHA for 6359b4a
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