Merge branch 'main' of https://github.com/actions/virtual-environments into v-malob/big-sur

This commit is contained in:
Maxim Lobanov
2020-10-27 13:13:54 +03:00
240 changed files with 3006 additions and 2306 deletions

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
}
}