Skip to content

Commit

Permalink
Remove Python from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijsreyn committed Nov 8, 2024
1 parent cc1637b commit 671a63e
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 136 deletions.

This file was deleted.

36 changes: 0 additions & 36 deletions resources/Help/Microsoft.Windows.Setting.Language/Language.md

This file was deleted.

This file was deleted.

15 changes: 1 addition & 14 deletions tests/PythonPip3Dsc/PythonPip3Dsc.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -112,22 +112,9 @@ Describe 'Pip3Package' {

$pipPackage = [Pip3Package]$whatIfState
$whatIf = $pipPackage.WhatIf() | ConvertFrom-Json


$whatIf.PackageName | Should -Be 'itsdangerous'
$whatIf._metaData.whatIf | Should -Contain "Would install itsdangerous-$($whatIfState.Version)"
}

It 'Does not return whatif result if package is invalid' -Skip:(!$IsWindows) {
$whatIfState = @{
PackageName = 'itsdangerouss'
}

$pipPackage = [Pip3Package]$whatIfState
$whatIf = $pipPackage.WhatIf() | ConvertFrom-Json


$whatIf.PackageName | Should -Be 'itsdangerouss'
$whatIf._metaData.whatIf | Should -Contain "ERROR: No matching distribution found for $($whatIfState.PackageName)"
}
}

0 comments on commit 671a63e

Please sign in to comment.