Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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