()
| 76 | |
| 77 | let foundCondaFile: string | undefined; |
| 78 | export async function getCondaFile() { |
| 79 | if (process.env.CI_PYTHON_CONDA_PATH) { |
| 80 | return process.env.CI_PYTHON_CONDA_PATH as string; |
| 81 | } |
| 82 | if (foundCondaFile) { |
| 83 | return foundCondaFile; |
| 84 | } |
| 85 | foundCondaFile = await getCondaFileFromKnownLocations(); |
| 86 | return foundCondaFile; |
| 87 | } |
| 88 | |
| 89 | let condaInfo: CondaInfo | undefined; |
| 90 | async function getCondaInfo(): Promise<CondaInfo | undefined> { |
no test coverage detected