Merge pull request #1835 from miketimofeev/pip3-path-test

[macOS] Add pester test for pip3 path
This commit is contained in:
Maxim Lobanov
2020-10-17 13:14:48 +03:00
committed by GitHub

View File

@@ -31,4 +31,10 @@ Describe "Python" {
It "Pip 3 is available" {
"pip3 --version" | Should -ReturnZeroExitCode
}
It "Pip 3 and Python 3 came from the same brew formula" {
$pip3Path = Split-Path (readlink (which pip3))
$python3Path = Split-Path (readlink (which python3))
$pip3Path | Should -BeExactly $python3Path
}
}