Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop asking which package manager to use for installing tools #20405

Merged
merged 1 commit into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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