Skip to content

Commit 5b7e040

Browse files
author
Kartik Raj
authored
Stop asking which package manager to use for installing tools (#20405)
Closes #11739
1 parent 5b6c99b commit 5b7e040

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/common/installer/condaInstaller.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class CondaInstaller extends ModuleInstaller {
3838
}
3939

4040
public get priority(): number {
41-
return 0;
41+
return 10;
4242
}
4343

4444
/**

src/test/common/installer/condaInstaller.unit.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ suite('Common - Conda Installer', () => {
4141
test('Name and priority', async () => {
4242
assert.strictEqual(installer.displayName, 'Conda');
4343
assert.strictEqual(installer.name, 'Conda');
44-
assert.strictEqual(installer.priority, 0);
44+
assert.strictEqual(installer.priority, 10);
4545
});
4646
test('Installer is not supported when conda is available variable is set to false', async () => {
4747
const uri = Uri.file(__filename);

0 commit comments

Comments
 (0)