Skip to content

Commit

Permalink
Stop asking which package manager to use for installing tools (#20405)
Browse files Browse the repository at this point in the history
Closes #11739
  • Loading branch information
Kartik Raj authored Dec 19, 2022
1 parent 5b6c99b commit 5b7e040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/common/installer/condaInstaller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class CondaInstaller extends ModuleInstaller {
}

public get priority(): number {
return 0;
return 10;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/test/common/installer/condaInstaller.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ suite('Common - Conda Installer', () => {
test('Name and priority', async () => {
assert.strictEqual(installer.displayName, 'Conda');
assert.strictEqual(installer.name, 'Conda');
assert.strictEqual(installer.priority, 0);
assert.strictEqual(installer.priority, 10);
});
test('Installer is not supported when conda is available variable is set to false', async () => {
const uri = Uri.file(__filename);
Expand Down

0 comments on commit 5b7e040

Please sign in to comment.