9
9
[switch ]$testnobuild ,
10
10
[ValidateSet (" x86" , " x64" , " arm" , " arm64" )][string []][Alias (' a' )]$arch = @ ([System.Runtime.InteropServices.RuntimeInformation ]::ProcessArchitecture.ToString().ToLowerInvariant()),
11
11
12
- # Run tests with code coverage
13
- [Parameter (ParameterSetName = ' CommandLine' )]
14
- [switch ] $testCoverage ,
15
-
16
12
[Parameter (ValueFromRemainingArguments = $true )][String []]$properties
17
13
)
18
14
@@ -43,7 +39,6 @@ function Get-Help() {
43
39
Write-Host " -sign Sign build outputs."
44
40
Write-Host " -test (-t) Incrementally builds and runs tests."
45
41
Write-Host " Use in conjunction with -testnobuild to only run tests."
46
- Write-Host " -testCoverage Run unit tests and capture code coverage information."
47
42
Write-Host " "
48
43
49
44
Write-Host " Libraries settings:"
@@ -82,7 +77,7 @@ if ($vs) {
82
77
}
83
78
84
79
# Check if an action is passed in
85
- $actions = " b" , " build" , " r" , " restore" , " rebuild" , " sign" , " testnobuild" , " publish" , " clean"
80
+ $actions = " b" , " build" , " r" , " restore" , " rebuild" , " sign" , " testnobuild" , " publish" , " clean" , " t " , " test "
86
81
$actionPassedIn = @ (Compare-Object - ReferenceObject @ ($PSBoundParameters.Keys ) - DifferenceObject $actions - ExcludeDifferent - IncludeEqual).Length -ne 0
87
82
if ($null -ne $properties -and $actionPassedIn -ne $true ) {
88
83
$actionPassedIn = @ (Compare-Object - ReferenceObject $properties - DifferenceObject $actions.ForEach ({ " -" + $_ }) - ExcludeDifferent - IncludeEqual).Length -ne 0
@@ -96,7 +91,6 @@ foreach ($argument in $PSBoundParameters.Keys)
96
91
{
97
92
switch ($argument )
98
93
{
99
- " testCoverage" { <# this argument is handled in this script only #> }
100
94
" os" { $arguments += " /p:TargetOS=$ ( $PSBoundParameters [$argument ]) " }
101
95
" properties" { $arguments += " " + $properties }
102
96
" verbosity" { $arguments += " -$argument " + $ ($PSBoundParameters [$argument ]) }
@@ -113,34 +107,4 @@ if ($env:TreatWarningsAsErrors -eq 'false') {
113
107
Write-Host " & `" $PSScriptRoot /common/build.ps1`" $arguments "
114
108
Invoke-Expression " & `" $PSScriptRoot /common/build.ps1`" $arguments "
115
109
116
-
117
- # Perform code coverage as the last operation, this enables the following scenarios:
118
- # .\build.cmd -restore -build -c Release -testCoverage
119
- if ($testCoverage ) {
120
- try {
121
- # Install required toolset
122
- . $PSScriptRoot / common/ tools.ps1
123
- InitializeDotNetCli - install $true | Out-Null
124
-
125
- Push-Location $PSScriptRoot / ../
126
-
127
- $testResultPath = " ./artifacts/TestResults/$configuration " ;
128
-
129
- # Run tests and collect code coverage
130
- ./ .dotnet/ dotnet dotnet- coverage collect -- settings ./ eng/ CodeCoverage.config -- output $testResultPath / local.cobertura.xml " build.cmd -test -configuration $configuration "
131
-
132
- # Generate the code coverage report and open it in the browser
133
- ./ .dotnet/ dotnet reportgenerator - reports:$testResultPath /* .cobertura.xml - targetdir:$testResultPath / CoverageResultsHtml - reporttypes:HtmlInline_AzurePipelines
134
- Start-Process $testResultPath / CoverageResultsHtml/ index.html
135
- }
136
- catch {
137
- Write-Host $_.Exception.Message - Foreground " Red"
138
- Write-Host $_.ScriptStackTrace - Foreground " DarkGray"
139
- exit $global :LASTEXITCODE ;
140
- }
141
- finally {
142
- Pop-Location
143
- }
144
- }
145
-
146
110
exit 0
0 commit comments