(pythonPath: string)
| 33 | // Useful to see on CI (when working with conda & non-conda, virtual envs & the like). |
| 34 | console.log(`Python used in tests is ${PYTHON_PATH}`); |
| 35 | export async function setPythonPathInWorkspaceRoot(pythonPath: string) { |
| 36 | return retryAsync(setPythonPathInWorkspace)(undefined, vscode.ConfigurationTarget.Workspace, pythonPath); |
| 37 | } |
| 38 | |
| 39 | export async function setAutoSaveDelayInWorkspaceRoot(delayinMS: number) { |
| 40 | return retryAsync(setAutoSaveDelay)(undefined, vscode.ConfigurationTarget.Workspace, delayinMS); |
no test coverage detected