Skip to content

Commit e824e4b

Browse files
author
Kartik Raj
committed
Disable global watchers
1 parent 1392508 commit e824e4b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/test/pythonEnvironments/base/locators/lowLevel/globalVirtualEnvironmentLocator.testvirtualenvs.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ suite('GlobalVirtualEnvironment Locator', async () => {
1010
const testVirtualHomeDir = path.join(TEST_LAYOUT_ROOT, 'virtualhome');
1111
const testWorkOnHomePath = path.join(testVirtualHomeDir, 'workonhome');
1212
let workonHomeOldValue: string | undefined;
13-
suiteSetup(async () => {
13+
suiteSetup(async function () {
14+
// https://github.com/microsoft/vscode-python/issues/17798
15+
return this.skip();
1416
workonHomeOldValue = process.env.WORKON_HOME;
1517
process.env.WORKON_HOME = testWorkOnHomePath;
1618
});

src/test/pythonEnvironments/base/locators/lowLevel/pyenvLocator.testvirtualenvs.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ suite('Pyenv Locator', async () => {
1111
const testPyenvRoot = path.join(TEST_LAYOUT_ROOT, 'pyenvhome', '.pyenv');
1212
const testPyenvVersionsDir = path.join(testPyenvRoot, 'versions');
1313
let pyenvRootOldValue: string | undefined;
14-
suiteSetup(async () => {
14+
suiteSetup(async function () {
15+
// https://github.com/microsoft/vscode-python/issues/17798
16+
return this.skip();
1517
pyenvRootOldValue = process.env.PYENV_ROOT;
1618
process.env.PYENV_ROOT = testPyenvRoot;
1719
});

0 commit comments

Comments
 (0)