Skip to content

Commit cd1cbb9

Browse files
committed
upgrade pester version to 4.4.4
1 parent 264652d commit cd1cbb9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/appveyor.psm1

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $ErrorActionPreference = 'Stop'
55

66
# Implements the AppVeyor 'install' step and installs the required versions of Pester, platyPS and the .Net Core SDK if needed.
77
function Invoke-AppVeyorInstall {
8-
$requiredPesterVersion = '4.4.1'
8+
$requiredPesterVersion = '4.4.4'
99
$pester = Get-Module Pester -ListAvailable | Where-Object { $_.Version -eq $requiredPesterVersion }
1010
if ($null -eq $pester) {
1111
if ($null -eq (Get-Module -ListAvailable PowershellGet)) {
@@ -70,6 +70,7 @@ function Invoke-AppveyorFinish {
7070
Add-Type -AssemblyName 'System.IO.Compression.FileSystem'
7171
[System.IO.Compression.ZipFile]::CreateFromDirectory((Join-Path $pwd 'out'), $zipFile)
7272
@(
73+
(Get-ChildItem TestResults.xml)
7374
# You can add other artifacts here
7475
(Get-ChildItem $zipFile)
7576
) | ForEach-Object { Push-AppveyorArtifact $_.FullName }

0 commit comments

Comments
 (0)