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 27b1c8c commit 15ba1b5Copy full SHA for 15ba1b5
src/test/pythonEnvironments/base/locators/lowLevel/watcherTestUtils.ts
@@ -151,7 +151,10 @@ export function testLocatorWatcher(
151
return items.some((item) => externalDeps.arePathsSame(item.executablePath, executable));
152
}
153
154
- suiteSetup(async () => {
+ suiteSetup(async function () {
155
+ if (getOSType() === OSType.Linux) {
156
+ this.skip();
157
+ }
158
await venvs.cleanUp();
159
});
160
async function setupLocator(onChanged: (e: PythonEnvsChangedEvent) => Promise<void>) {
0 commit comments