Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add cwd for debugging #21668

Merged
merged 7 commits into from
Aug 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/client/testing/common/debugLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@ export class DebugLauncher implements ITestDebugLauncher {
const pluginPath = path.join(EXTENSION_ROOT_DIR, 'pythonFiles');
launchArgs.env.PYTHONPATH = pluginPath;
}
if (launchArgs.env && launchArgs.env.PYTHONPATH) {
eleanorjboyd marked this conversation as resolved.
Show resolved Hide resolved
launchArgs.env.PYTHONPATH = `${launchArgs.env.PYTHONPATH}${path.delimiter}${options.cwd}`;
} else if (launchArgs.env) {
launchArgs.env.PYTHONPATH = options.cwd;
}

// Clear out purpose so we can detect if the configuration was used to
// run via F5 style debugging.
Expand Down