Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions news/3 Code Health/6212.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove test.ipynb from root folder.
24 changes: 6 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/test/datascience/dataScienceIocContainer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ export class DataScienceIocContainer extends UnitTestIocContainer {
dispose: () => { return; }
};

window.console.log(`Current directory ${__dirname}`);
appShell.setup(a => a.showErrorMessage(TypeMoq.It.isAnyString())).returns((e) => { throw e; });
appShell.setup(a => a.showInformationMessage(TypeMoq.It.isAny(), TypeMoq.It.isAny())).returns(() => Promise.resolve(''));
appShell.setup(a => a.showInformationMessage(TypeMoq.It.isAny(), TypeMoq.It.isAny(), TypeMoq.It.isAny())).returns((_a1: string, a2: string, _a3: string) => Promise.resolve(a2));
Expand Down
2 changes: 1 addition & 1 deletion src/test/datascience/mockJupyterManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class MockJupyterManager implements IJupyterSessionManager {
this.kernelSpecs.push({name: '0e8519db-0895-416c-96df-fa80131ecea0', dir: 'C:\\Users\\rchiodo\\AppData\\Roaming\\jupyter\\kernels\\0e8519db-0895-416c-96df-fa80131ecea0'});

// Setup our default cells that happen for everything
this.addCell(CodeSnippits.MatplotLibInitSvg);
this.addCell(CodeSnippits.MatplotLibInitPng);
this.addCell('matplotlib.style.use(\'dark_background\')');
this.addCell(`matplotlib.rcParams.update(${Identifiers.MatplotLibDefaultParams})`);
this.addCell(`%cd "${path.join(EXTENSION_ROOT_DIR, 'src', 'test', 'datascience')}"`);
Expand Down
File renamed without changes.