Skip to content

Commit 2acf014

Browse files
Disable the "Interpreters - Workspace VirtualEnv Service" standard tests. (#13784)
1 parent 329292c commit 2acf014

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/pythonEnvironments/discovery/locators/workspaceVirtualEnvService.test.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,15 @@ class Venvs {
7878
const baseTimeoutMs = 30_000;
7979
const timeoutMs = IS_CI_SERVER ? baseTimeoutMs * 4 : baseTimeoutMs;
8080
suite('Interpreters - Workspace VirtualEnv Service', function () {
81+
suiteSetup(async function () {
82+
// tslint:disable-next-line:no-suspicious-comment
83+
// TODO: https://github.com/microsoft/vscode-python/issues/13649
84+
// These tests have been disabled due to flakiness. It's likely
85+
// that we will replace them while refactoring the locators
86+
// rather than fix these tests.
87+
return this.skip();
88+
});
89+
8190
this.timeout(timeoutMs);
8291
this.retries(0);
8392

0 commit comments

Comments
 (0)