Skip to content

Commit c983708

Browse files
authored
Merge branch 'main' into generous-deer
2 parents 2dbf315 + 0540519 commit c983708

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.github/actions/build-vsix/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ runs:
9393
VSIX_NAME: ${{ inputs.vsix_name }}
9494

9595
- name: Upload VSIX
96-
uses: actions/upload-artifact@v5
96+
uses: actions/upload-artifact@v6
9797
with:
9898
name: ${{ inputs.artifact_name }}
9999
path: ${{ inputs.vsix_name }}

.github/workflows/lock-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: 'Lock Issues'
19-
uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5.0.1
19+
uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0
2020
with:
2121
github-token: ${{ github.token }}
2222
issue-inactive-days: '30'

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ jobs:
680680
run: npm run test:cover:report
681681

682682
- name: Upload HTML report
683-
uses: actions/upload-artifact@v5
683+
uses: actions/upload-artifact@v6
684684
with:
685685
name: ${{ runner.os }}-coverage-report-html
686686
path: ./coverage

python_files/vscode_pytest/run_pytest_script.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,13 @@ def run_pytest(args):
5555
try:
5656
# Read the test ids from the file and run pytest.
5757
ids = ids_path.read_text(encoding="utf-8").splitlines()
58-
arg_array = ["-p", "vscode_pytest", *args, *ids]
59-
print("Running pytest with args: " + str(arg_array))
60-
pytest.main(arg_array)
6158
except Exception as e:
6259
print("Error[vscode-pytest]: unable to read testIds from temp file" + str(e))
6360
run_pytest(args)
61+
else:
62+
arg_array = ["-p", "vscode_pytest", *args, *ids]
63+
print("Running pytest with args: " + str(arg_array))
64+
pytest.main(arg_array)
6465
finally:
6566
# Delete the test ids temp file.
6667
try:

src/client/telemetry/pylance.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,11 @@
467467
"failed" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
468468
}
469469
*/
470+
/* __GDPR__
471+
"language_server/copilot_hover" : {
472+
"symbolName" : { "classification": "SystemMetaData", "purpose": "PerformanceAndHealth" }
473+
}
474+
*/
470475
/**
471476
* Telemetry event sent when LSP server crashes
472477
*/

0 commit comments

Comments
 (0)