-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Ensure working directory is an actual directory #13403
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
Conversation
@@ -51,7 +55,7 @@ export class PythonKernelLauncherDaemon implements IDisposable { | |||
// If we don't have a KernelDaemon here then we have an execution service and should use that to launch | |||
const observableOutput = daemon.execModuleObservable(moduleName, moduleArgs, { | |||
env, | |||
cwd: workingDirectory | |||
cwd: wdExists ? workingDirectory : process.cwd() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't really necessary but just wanted to double check.
Codecov Report
@@ Coverage Diff @@
## master #13403 +/- ##
==========================================
- Coverage 59.94% 59.90% -0.05%
==========================================
Files 670 670
Lines 37186 37208 +22
Branches 5309 5312 +3
==========================================
- Hits 22293 22288 -5
- Misses 13771 13780 +9
- Partials 1122 1140 +18
Continue to review full report at Codecov.
|
assert.ok(interruptedKernel, 'Kernel was not interrupted'); | ||
} else { | ||
// Timing is too iffy for real jupyter. However we really just | ||
// want to make sure double interrupt is supported so keep the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sentence cuts off?
Kudos, SonarCloud Quality Gate passed!
|
Fixes the nightly flake hover test. Caused by my changes to set the working directory.
HA! Caught another bug with our functional tests. I love it when that happens.