MCPcopy Create free account
hub / github.com/deepnote/vscode-deepnote / setPythonPathInWorkspaceRoot

Function setPythonPathInWorkspaceRoot

src/test/common.node.ts:35–37  ·  view source on GitHub ↗
(pythonPath: string)

Source from the content-addressed store, hash-verified

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

Callers 1

initializePythonFunction · 0.90

Calls 1

retryAsyncFunction · 0.85

Tested by

no test coverage detected