File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ pester_test:
1313 - pwsh
1414 - install-module -name 'pester' -RequiredVersion '5.5.0' -Repository 'psgallery' -confirm:$false
1515 - Import-Module -name pester -RequiredVersion '5.5.0'
16- - invoke-Pester -Script .\test\Test-Unit-Pester.ps1
16+ - invoke-Pester -Script .\test\Test-Unit-Pester.ps1 -CI || exit 1
1717
1818# Pester Test Stage
1919pester_test_coverage :
@@ -24,7 +24,7 @@ pester_test_coverage:
2424 - pwsh
2525 - install-module -name 'pester' -RequiredVersion '5.5.0' -Repository 'psgallery' -confirm:$false
2626 - Import-Module -name pester -RequiredVersion '5.5.0'
27- - invoke-Pester -Script .\build\bt0-ci-test-pester.ps1
27+ - invoke-Pester -Script .\build\bt0-ci-test-pester.ps1 -CI || exit 1
2828 artifacts :
2929 paths :
3030 - ./coverage.xml
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ $pesterConfig = New-PesterConfiguration -hashtable @{
1717 Path = ' .\test\Test-Unit-Pester.ps1' ;
1818 }
1919}
20- Invoke-Pester - Configuration $pesterConfig - CI || exit 1
20+ Invoke-Pester - Configuration $pesterConfig
You can’t perform that action at this time.
0 commit comments