Related: #24122
We may be selecting undesired conda environment in
|
const condaExecutionService = await this.createCondaExecutionService(pythonPath, processService); |
|
if (condaExecutionService) { |
|
return condaExecutionService; |
|
} |
|
const env = createPythonEnv(pythonPath, processService, this.fileSystem); |
|
return createPythonService(processService, env); |
which are used for getting Python executable for testing purposes, etc.
TODO:
- Investigate how pythonexecutionFactory is related to Select interpreter dropdown we have. => These two are separate things.
- Ensure these two Python environment/executables are aligned.
- Potentially look into some environment service where we can store the state of currently selected environment.
/cc @eleanorjboyd
Related: #24122
We may be selecting undesired conda environment in
vscode-python/src/client/common/process/pythonExecutionFactory.ts
Lines 130 to 135 in c314bab
TODO:
/cc @eleanorjboyd