Skip to content

Commit cd7890c

Browse files
committed
ci expects 3 'errors' now
1 parent ff3e1be commit cd7890c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ jobs:
1414
run: |
1515
Install-Module -Name Pester -Force
1616
$res = Invoke-Pester -PassThru
17-
# There is a failing test on the CI because of Write-Error
18-
if ($res.FailedCount -eq 1) {
17+
# There are failing tests on the CI because of Write-Error
18+
# Which is what git diff --numstat warnings do
19+
if ($res.FailedCount -eq 3) {
1920
exit 0
2021
} else {
2122
exit 1

0 commit comments

Comments
 (0)