Skip to content

Commit 71693a3

Browse files
authored
Merge branch 'main' into dependabot/github_actions/dot-github/actions/build-vsix/actions/setup-node-6
2 parents ad50d76 + 00e529f commit 71693a3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ The Microsoft Python Extension for Visual Studio Code collects usage
121121
data and sends it to Microsoft to help improve our products and
122122
services. Read our
123123
[privacy statement](https://privacy.microsoft.com/privacystatement) to
124-
learn more. This extension respects the `telemetry.enableTelemetry`
124+
learn more. This extension respects the `telemetry.telemetryLevel`
125125
setting which you can learn more about at
126126
https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting.

src/test/smoke/runInTerminal.smoke.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@ suite('Smoke Test: Run Python File In Terminal', () => {
1717
return this.skip();
1818
}
1919
await initialize();
20+
// Ensure the environments extension is not used for this test
21+
await vscode.workspace
22+
.getConfiguration('python')
23+
.update('useEnvironmentsExtension', false, vscode.ConfigurationTarget.Global);
2024
return undefined;
2125
});
26+
2227
setup(initializeTest);
2328
suiteTeardown(closeActiveWindows);
2429
teardown(closeActiveWindows);

0 commit comments

Comments
 (0)