File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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.
77function 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 }
You can’t perform that action at this time.
0 commit comments