File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -128,14 +128,9 @@ task Build {
128
128
}
129
129
130
130
task Test - If { ! $script :IsUnix } {
131
- $testParams = @ {}
132
- if ($env: APPVEYOR -ne $null ) {
133
- $testParams = @ {" l" = " Appveyor" }
134
- }
135
-
136
- exec { & $script :dotnetExe test - c $Configuration @testParams .\test\PowerShellEditorServices.Test\PowerShellEditorServices.Test.csproj }
137
- exec { & $script :dotnetExe test - c $Configuration @testParams .\test\PowerShellEditorServices.Test.Protocol\PowerShellEditorServices.Test.Protocol.csproj }
138
- exec { & $script :dotnetExe test - c $Configuration @testParams .\test\PowerShellEditorServices.Test.Host\PowerShellEditorServices.Test.Host.csproj }
131
+ exec { & $script :dotnetExe test - c $Configuration .\test\PowerShellEditorServices.Test\PowerShellEditorServices.Test.csproj }
132
+ exec { & $script :dotnetExe test - c $Configuration .\test\PowerShellEditorServices.Test.Protocol\PowerShellEditorServices.Test.Protocol.csproj }
133
+ exec { & $script :dotnetExe test - c $Configuration .\test\PowerShellEditorServices.Test.Host\PowerShellEditorServices.Test.Host.csproj }
139
134
}
140
135
141
136
task LayoutModule - After Build, BuildHost {
@@ -185,7 +180,7 @@ task UploadTestLogs -After Test -If ($script:IsCIBuild) {
185
180
Push-AppveyorArtifact $testLogsZipPath
186
181
}
187
182
else {
188
- Write-Host " ### WARNING: Test logs could not be found!" - ForegroundColor Yellow
183
+ Write-Host " `n ### WARNING: Test logs could not be found!`n " - ForegroundColor Yellow
189
184
}
190
185
}
191
186
You can’t perform that action at this time.
0 commit comments