-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.ps1
31 lines (25 loc) · 935 Bytes
/
build.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
param([bool]$generateJacocoFile=$True)
#Get current location
$ProjectRoot = [System.IO.Path]::GetDirectoryName($PSCommandPath)
#
# run pester tests for the XTherPS project
#
function RunXTherPSTests
{
#Run tests with code coverage
$CodeFiles = (Get-ChildItem $ProjectRoot/src -Recurse -Include "*.psm1","*.ps1").FullName
if ($generateJacocoFile)
{
$Script:TestResults = Invoke-Pester -Path $ProjectRoot/tests -CodeCoverage $CodeFiles -PassThru -OutputFormat NUnitXml -OutputFile "$ProjectRoot\testResults.xml" -ExcludeTag 'e2e' -CodeCoverageOutputFile "$ProjectRoot\codeCoverage.xml"
}
else
{
$Script:TestResults = Invoke-Pester -Path $ProjectRoot/tests -CodeCoverage $CodeFiles -PassThru -OutputFormat NUnitXml -OutputFile "$ProjectRoot\testResults.xml" -ExcludeTag 'e2e'
}
#change location again
Set-Location $ProjectRoot
}
#
# Main: Entry point
#
RunXTherPSTests