Skip to content

Commit c897479

Browse files
authored
Skip tests due to #17666 (#17757)
1 parent 4872361 commit c897479

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/test/common/terminals/environmentActivationProviders/terminalActivation.testvirtualenvs.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,18 @@ suite('Activation of Environments in Terminal', () => {
182182
if (process.env.CI_PYTHON_VERSION && process.env.CI_PYTHON_VERSION.startsWith('2.')) {
183183
this.skip();
184184
}
185+
// https://github.com/microsoft/vscode-python/issues/17666
186+
this.skip();
185187
await testActivation(envPaths.venvPath);
186188
});
187-
test('Should activate with pipenv', async () => {
189+
test('Should activate with pipenv', async function () {
190+
// https://github.com/microsoft/vscode-python/issues/17666
191+
this.skip();
188192
await testActivation(envPaths.pipenvPath);
189193
});
190-
test('Should activate with virtualenv', async () => {
194+
test('Should activate with virtualenv', async function () {
195+
// https://github.com/microsoft/vscode-python/issues/17666
196+
this.skip();
191197
await testActivation(envPaths.virtualEnvPath);
192198
});
193199
test('Should activate with conda', async function () {

0 commit comments

Comments
 (0)