Remove all Big Data Cluster features (#21369)

This commit is contained in:
Cory Rivera
2022-12-07 12:28:17 -08:00
committed by GitHub
parent bb1f5bfffe
commit e2327c393a
213 changed files with 346 additions and 46800 deletions

View File

@@ -58,7 +58,7 @@ describe('Notebook Extension Python Installation', function () {
console.log('Uninstalling existing pip dependencies');
let install = jupyterController.jupyterInstallation;
let pythonExe = JupyterServerInstallation.getPythonExePath(pythonInstallDir);
let command = `"${pythonExe}" -m pip uninstall -y jupyter pandas sparkmagic`;
let command = `"${pythonExe}" -m pip uninstall -y jupyter`;
await executeStreamedCommand(command, { env: install.execOptions.env }, install.outputChannel);
console.log('Uninstalling existing pip dependencies is done');
@@ -84,15 +84,15 @@ describe('Notebook Extension Python Installation', function () {
let testPkgVersion = '0.24.2';
let expectedPkg: PythonPkgDetails = { name: testPkg, version: testPkgVersion };
await install.installPipPackages([{ name: testPkg, version: testPkgVersion}], false);
await install.installPipPackages([{ name: testPkg, version: testPkgVersion }], false);
let packages = await install.getInstalledPipPackages();
should(packages).containEql(expectedPkg);
await install.uninstallPipPackages([{ name: testPkg, version: testPkgVersion}]);
await install.uninstallPipPackages([{ name: testPkg, version: testPkgVersion }]);
packages = await install.getInstalledPipPackages();
should(packages).not.containEql(expectedPkg);
await install.installPipPackages([{ name: testPkg, version: testPkgVersion}], false);
await install.installPipPackages([{ name: testPkg, version: testPkgVersion }], false);
packages = await install.getInstalledPipPackages();
should(packages).containEql(expectedPkg);
});