Skip to content

Commit 3a50a5f

Browse files
committed
hopefully fixed tests
1 parent 0db916b commit 3a50a5f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
"--extensionTestsPath=${workspaceFolder}/out/test"
177177
],
178178
"env": {
179-
"VSC_PYTHON_CI_TEST_GREP": "Export Python" // Modify this to run a subset of the single workspace tests
179+
"VSC_PYTHON_CI_TEST_GREP": "" // Modify this to run a subset of the single workspace tests
180180
},
181181
"stopOnEntry": false,
182182
"sourceMaps": true,
@@ -306,7 +306,7 @@
306306
"--ui=tdd",
307307
"--recursive",
308308
"--colors",
309-
"--grep", "Convert to python",
309+
//"--grep", "<suite name>",
310310
"--timeout=300000"
311311
],
312312
"env": {

src/client/datascience/serviceRegistry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export function registerTypes(serviceManager: IServiceManager) {
277277
serviceManager.addSingleton<IExport>(IExport, ExportToHTML, ExportFormat.html);
278278
serviceManager.addSingleton<IExport>(IExport, ExportToPython, ExportFormat.python);
279279
serviceManager.addSingleton<ExportCommands>(ExportCommands, ExportCommands);
280-
serviceManager.addSingleton<IExportManagerFilePicker>(ExportManagerFilePicker, ExportManagerFilePicker);
280+
serviceManager.addSingleton<IExportManagerFilePicker>(IExportManagerFilePicker, ExportManagerFilePicker);
281281

282282
registerGatherTypes(serviceManager);
283283
registerNotebookTypes(serviceManager);

0 commit comments

Comments
 (0)