mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
14 lines
433 B
PowerShell
14 lines
433 B
PowerShell
Describe "Miniconda" {
|
|
It "Miniconda Environment variables is set. " {
|
|
${env:CONDA} | Should -Not -BeNullOrEmpty
|
|
}
|
|
|
|
It "Miniconda $env:CONDA\<PathTest> " -TestCases @(
|
|
@{ PathTest = "python.exe" }
|
|
@{ PathTest = "Scripts\conda.exe" }
|
|
) {
|
|
$condaPath = Join-Path ${env:CONDA} $PathTest
|
|
$condaPath | Should -Exist
|
|
"$condaPath --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |