File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ $ErrorActionPreference = 'Stop'
5
5
6
6
# Implements the AppVeyor 'install' step and installs the required versions of Pester, platyPS and the .Net Core SDK if needed.
7
7
function Invoke-AppVeyorInstall {
8
- $requiredPesterVersion = ' 4.4.1 '
8
+ $requiredPesterVersion = ' 4.4.4 '
9
9
$pester = Get-Module Pester - ListAvailable | Where-Object { $_.Version -eq $requiredPesterVersion }
10
10
if ($null -eq $pester ) {
11
11
if ($null -eq (Get-Module - ListAvailable PowershellGet)) {
@@ -70,6 +70,7 @@ function Invoke-AppveyorFinish {
70
70
Add-Type - AssemblyName ' System.IO.Compression.FileSystem'
71
71
[System.IO.Compression.ZipFile ]::CreateFromDirectory((Join-Path $pwd ' out' ), $zipFile )
72
72
@ (
73
+ (Get-ChildItem TestResults.xml)
73
74
# You can add other artifacts here
74
75
(Get-ChildItem $zipFile )
75
76
) | ForEach-Object { Push-AppveyorArtifact $_.FullName }
You can’t perform that action at this time.
0 commit comments