mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00:00
41 lines
1.2 KiB
PowerShell
41 lines
1.2 KiB
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
Import-Module "$PSScriptRoot/Helpers.psm1" -DisableNameChecking
|
|
|
|
$os = Get-OSVersion
|
|
|
|
Describe "Python3" {
|
|
It "Python 3 is available" {
|
|
"python3 --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
if ($os.IsArm64) {
|
|
It "Python 3 is installed under /opt/homebrew/bin/" {
|
|
Get-ToolPath "python3" | Should -BeLike "/opt/homebrew/bin/*"
|
|
}
|
|
} else {
|
|
It "Python 3 is installed under /usr/local/bin" {
|
|
Get-ToolPath "python3" | Should -BeLike "/usr/local/bin/*"
|
|
}
|
|
}
|
|
|
|
It "Pip 3 is available" {
|
|
"pip3 --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Pipx is available" {
|
|
"pipx --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Pip 3 and Python 3 came from the same path prefix" {
|
|
$pip3Path = Split-Path (readlink (which pip3))
|
|
$python3Path = Split-Path (readlink (which python3))
|
|
$pip3Path | Should -BeExactly $python3Path
|
|
}
|
|
|
|
It "Pip 3 and Python 3 came from brew formula" {
|
|
Split-Path (readlink (which pip3)) | Should -BeLike "*/Cellar/*"
|
|
Split-Path (readlink (which python3)) | Should -BeLike "*/Cellar/*"
|
|
}
|
|
|
|
}
|