Skip to content

Commit 947a46a

Browse files
author
Kim-Adeline Miguel
committed
Merge branch 'main' into 15465-drop-pylint-notification
2 parents d37e19f + a1911a5 commit 947a46a

36 files changed

+309
-250
lines changed

‎.eslintignore‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ src/test/interpreters/pythonPathUpdaterFactory.unit.test.ts
5454
src/test/interpreters/activation/service.unit.test.ts
5555
src/test/interpreters/helpers.unit.test.ts
5656
src/test/interpreters/currentPathService.unit.test.ts
57-
src/test/interpreters/display/interpreterSelectionTip.unit.test.ts
5857
src/test/interpreters/display.unit.test.ts
5958

6059
src/test/configuration/interpreterSelector/interpreterSelector.unit.test.ts
@@ -313,7 +312,6 @@ src/client/interpreter/autoSelection/rules/system.ts
313312
src/client/interpreter/activation/service.ts
314313
src/client/interpreter/display/shebangCodeLensProvider.ts
315314
src/client/interpreter/display/index.ts
316-
src/client/interpreter/display/interpreterSelectionTip.ts
317315

318316
src/client/api.ts
319317
src/client/extension.ts

‎.github/workflows/insiders.yml‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -434,17 +434,17 @@ jobs:
434434
echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV
435435
shell: bash
436436

437-
- name: Run insider tests
438-
env:
439-
DISPLAY: 10
440-
INSTALL_JUPYTER_EXTENSION: true
441-
INSTALL_PYLANCE_EXTENSION: true
442-
VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
443-
TEST_FILES_SUFFIX: insiders.test
444-
CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
445-
uses: GabrielBB/xvfb-action@v1.4
446-
with:
447-
run: node --no-force-async-hooks-checks ./out/test/standardTest.js
437+
# - name: Run insider tests
438+
# env:
439+
# DISPLAY: 10
440+
# INSTALL_JUPYTER_EXTENSION: true
441+
# INSTALL_PYLANCE_EXTENSION: true
442+
# VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
443+
# TEST_FILES_SUFFIX: insiders.test
444+
# CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
445+
# uses: GabrielBB/xvfb-action@v1.4
446+
# with:
447+
# run: node --no-force-async-hooks-checks ./out/test/standardTest.js
448448

449449
coverage:
450450
name: Coverage reports upload

‎.github/workflows/pr-check.yml‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -435,17 +435,17 @@ jobs:
435435
echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV
436436
shell: bash
437437

438-
- name: Run insider tests
439-
env:
440-
DISPLAY: 10
441-
INSTALL_JUPYTER_EXTENSION: true
442-
INSTALL_PYLANCE_EXTENSION: true
443-
VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
444-
TEST_FILES_SUFFIX: insiders.test
445-
CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
446-
uses: GabrielBB/xvfb-action@v1.4
447-
with:
448-
run: node --no-force-async-hooks-checks ./out/test/standardTest.js
438+
# - name: Run insider tests
439+
# env:
440+
# DISPLAY: 10
441+
# INSTALL_JUPYTER_EXTENSION: true
442+
# INSTALL_PYLANCE_EXTENSION: true
443+
# VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
444+
# TEST_FILES_SUFFIX: insiders.test
445+
# CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
446+
# uses: GabrielBB/xvfb-action@v1.4
447+
# with:
448+
# run: node --no-force-async-hooks-checks ./out/test/standardTest.js
449449

450450
coverage:
451451
name: Coverage reports upload

‎README.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marke
44

55
Additionally, the Python extension gives you an optimal and feature-rich experience for working with Jupyter notebooks through the [Jupyter extension](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter).
66

7-
<img src=https://raw.githubusercontent.com/microsoft/vscode-python/main/icon.png width=35 height=35 style="padding:10px"> <img src=https://raw.githubusercontent.com/microsoft/vscode-jupyter/main/icon.png width=35 height=35 style="padding:10px">
87

98
## Quick start
109

‎experiments.json‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@
2323
"min": 10,
2424
"max": 100
2525
},
26+
{
27+
"name": "CollectNodeLSRequestTiming - experiment",
28+
"salt": "CollectNodeLSRequestTiming",
29+
"min": 0,
30+
"max": 100
31+
},
32+
{
33+
"name": "CollectNodeLSRequestTiming - control",
34+
"salt": "CollectNodeLSRequestTiming",
35+
"min": 0,
36+
"max": 0
37+
},
2638
{
2739
"name": "DeprecatePythonPath - experiment",
2840
"salt": "DeprecatePythonPath",

‎news/1 Enhancements/15476.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add optional user-level `python.tensorBoard.logDirectory` setting. When starting a TensorBoard session, use this setting if it is present instead of prompting the user to select a log directory.

‎news/1 Enhancements/15647.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Drop prompt being displayed on first extension launch with a tip or a survey.

‎news/1 Enhancements/67.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add new command to report an Issue using the vscode-python template.

‎news/2 Fixes/15621.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix link to create a new Jupyter notebook in Python start page.

‎news/2 Fixes/15644.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ensure any stray jedi process is terminated on language server dispose.

0 commit comments

Comments
 (0)