()
| 2379 | } |
| 2380 | |
| 2381 | function resolvePythonRuntimePlan() { |
| 2382 | const seenExecutables = new Set(); |
| 2383 | const condaProbes = collectPythonProbes(buildCondaPythonCandidates(), 'conda', seenExecutables); |
| 2384 | const pathProbes = collectPythonProbes(pythonCandidates, 'path', seenExecutables); |
| 2385 | return createPythonRuntimePlan({ condaProbes, pathProbes, minimumVersionRequest: minimumPythonRequest() }); |
| 2386 | } |
| 2387 | |
| 2388 | function runtimePythonEnvPath(home) { |
| 2389 | return path.join(home, 'runtime', 'python-env'); |
no test coverage detected