We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329292c commit 2acf014Copy full SHA for 2acf014
src/test/pythonEnvironments/discovery/locators/workspaceVirtualEnvService.test.ts
@@ -78,6 +78,15 @@ class Venvs {
78
const baseTimeoutMs = 30_000;
79
const timeoutMs = IS_CI_SERVER ? baseTimeoutMs * 4 : baseTimeoutMs;
80
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
+
90
this.timeout(timeoutMs);
91
this.retries(0);
92
0 commit comments