Skip to content

Commit

Permalink
Skip tests due to #17666 (#17757)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig authored Oct 15, 2021
1 parent 4872361 commit c897479
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,18 @@ suite('Activation of Environments in Terminal', () => {
if (process.env.CI_PYTHON_VERSION && process.env.CI_PYTHON_VERSION.startsWith('2.')) {
this.skip();
}
// https://github.com/microsoft/vscode-python/issues/17666
this.skip();
await testActivation(envPaths.venvPath);
});
test('Should activate with pipenv', async () => {
test('Should activate with pipenv', async function () {
// https://github.com/microsoft/vscode-python/issues/17666
this.skip();
await testActivation(envPaths.pipenvPath);
});
test('Should activate with virtualenv', async () => {
test('Should activate with virtualenv', async function () {
// https://github.com/microsoft/vscode-python/issues/17666
this.skip();
await testActivation(envPaths.virtualEnvPath);
});
test('Should activate with conda', async function () {
Expand Down

0 comments on commit c897479

Please sign in to comment.