Skip to content

Commit 32e41fa

Browse files
authored
Move test.ipynb out of root enlistment folder (microsoft#6382)
* Move test.ipynb out of root enlistment folder * Try again * Looks like test.ipynb isn't needed at all
1 parent 7134c95 commit 32e41fa

5 files changed

Lines changed: 9 additions & 19 deletions

File tree

news/3 Code Health/6212.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove test.ipynb from root folder.

package-lock.json

Lines changed: 6 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/test/datascience/dataScienceIocContainer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@ export class DataScienceIocContainer extends UnitTestIocContainer {
508508
dispose: () => { return; }
509509
};
510510

511+
window.console.log(`Current directory ${__dirname}`);
511512
appShell.setup(a => a.showErrorMessage(TypeMoq.It.isAnyString())).returns((e) => { throw e; });
512513
appShell.setup(a => a.showInformationMessage(TypeMoq.It.isAny(), TypeMoq.It.isAny())).returns(() => Promise.resolve(''));
513514
appShell.setup(a => a.showInformationMessage(TypeMoq.It.isAny(), TypeMoq.It.isAny(), TypeMoq.It.isAny())).returns((_a1: string, a2: string, _a3: string) => Promise.resolve(a2));

src/test/datascience/mockJupyterManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class MockJupyterManager implements IJupyterSessionManager {
100100
this.kernelSpecs.push({name: '0e8519db-0895-416c-96df-fa80131ecea0', dir: 'C:\\Users\\rchiodo\\AppData\\Roaming\\jupyter\\kernels\\0e8519db-0895-416c-96df-fa80131ecea0'});
101101

102102
// Setup our default cells that happen for everything
103-
this.addCell(CodeSnippits.MatplotLibInitSvg);
103+
this.addCell(CodeSnippits.MatplotLibInitPng);
104104
this.addCell('matplotlib.style.use(\'dark_background\')');
105105
this.addCell(`matplotlib.rcParams.update(${Identifiers.MatplotLibDefaultParams})`);
106106
this.addCell(`%cd "${path.join(EXTENSION_ROOT_DIR, 'src', 'test', 'datascience')}"`);

0 commit comments

Comments
 (0)