Skip to content

Commit

Permalink
Update pipeline (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Jul 17, 2024
1 parent d00110a commit 77d44e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Now if both ModuleFast and PowerShellGet compatibility module is configured
PSResourceGet is automatically added as a dependency. This is for example
needed for publishing built module to the gallery.
- Update pipeline so build not fail.

## [0.117.0] - 2023-09-29

Expand Down
10 changes: 5 additions & 5 deletions tests/Integration/ResolveDependencies.Integration.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ Describe 'Resolve dependencies' {
Parameters = @{}
}
Pester = @{
Version = '5.5.0-rc1'
PesterConverter = @{
Version = '0.2.0-preview0007'
Parameters = @{
AllowPrerelease = $true
}
Expand Down Expand Up @@ -148,10 +148,10 @@ Describe 'Resolve dependencies' {
}

It 'Should have resolve the correct pre-release version' {
$pesterModuleManifest = Import-PowerShellDataFile -Path '.\output\RequiredModules\Pester\**\Pester.psd1'
$pesterModuleManifest = Import-PowerShellDataFile -Path '.\output\RequiredModules\PesterConverter\**\PesterConverter.psd1'

$pesterModuleManifest.ModuleVersion | Should -Be '5.5.0'
$pesterModuleManifest.PrivateData.PSData.Prerelease | Should -Be 'rc1'
$pesterModuleManifest.ModuleVersion | Should -Be '0.2.0'
$pesterModuleManifest.PrivateData.PSData.Prerelease | Should -Be 'preview0007'
}
}
}
Expand Down

0 comments on commit 77d44e1

Please sign in to comment.