Skip to content

Commit f02fce4

Browse files
No DS merge into main (microsoft#14447)
1 parent 37ae522 commit f02fce4

894 files changed

Lines changed: 16844 additions & 176238 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintignore

Lines changed: 30 additions & 538 deletions
Large diffs are not rendered by default.

.github/ISSUE_TEMPLATE/1_ds_bug_report.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/3_ds_feature_request.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/test_plan.md

Lines changed: 0 additions & 256 deletions
Large diffs are not rendered by default.

.github/workflows/insiders.yml

Lines changed: 28 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,6 @@ jobs:
196196
- name: Install test requirements
197197
run: python -m pip install --upgrade -r build/test-requirements.txt
198198

199-
- name: pip install ipython requirements
200-
run: |
201-
python -m pip install numpy
202-
python -m pip install --upgrade -r ./build/ipython-test-requirements.txt
203-
if: matrix.test-suite == 'python-unit'
204-
205199
- name: Install debugpy wheels (python 3.8)
206200
run: |
207201
python -m pip install wheel
@@ -306,11 +300,10 @@ jobs:
306300
retention-days: 1
307301
if: matrix.test-suite == 'ts-unit' && startsWith(matrix.python, 3.)
308302

309-
# Run the Python and IPython tests in our codebase.
310-
- name: Run Python and IPython unit tests
303+
# Run the Python tests in our codebase.
304+
- name: Run Python unit tests
311305
run: |
312306
python pythonFiles/tests/run_all.py
313-
python -m IPython pythonFiles/tests/run_all.py
314307
if: matrix.test-suite == 'python-unit'
315308

316309
# The virtual environment based tests use the `testSingleWorkspace` set of tests
@@ -405,15 +398,6 @@ jobs:
405398
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
406399
shell: bash
407400

408-
- name: pip install ipython requirements
409-
run: |
410-
python -m pip install numpy
411-
python -m pip install --upgrade -r ./build/ipython-test-requirements.txt
412-
413-
- name: pip install jupyter
414-
run: |
415-
python -m pip install --upgrade jupyter
416-
417401
# Save time by reusing bits from the VSIX.
418402
- name: Download VSIX
419403
uses: actions/download-artifact@v2
@@ -480,28 +464,29 @@ jobs:
480464
token: ${{ secrets.CODECOV_TOKEN }}
481465
file: ./coverage/cobertura-coverage.xml
482466

483-
upload:
484-
name: Upload VSIX to Azure Blob Storage
485-
runs-on: ubuntu-latest
486-
if: github.repository == 'microsoft/vscode-python'
487-
needs: [tests, smoke-tests, build-vsix]
488-
env:
489-
BLOB_CONTAINER_NAME: extension-builds
490-
BLOB_NAME: ms-python-insiders.vsix
491-
492-
steps:
493-
- name: Download VSIX
494-
uses: actions/download-artifact@v2
495-
with:
496-
name: ${{ env.ARTIFACT_NAME_VSIX }}
497-
498-
- name: Azure Login
499-
uses: azure/login@v1
500-
with:
501-
creds: ${{ secrets.AZURE_CREDENTIALS }}
502-
503-
- name: Upload to Blob Storage
504-
run: az storage blob upload --file ${{ env.VSIX_NAME }} --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ env.BLOB_NAME }} --auth-mode login
505-
506-
- name: Get URL to uploaded VSIX
507-
run: az storage blob url --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ env.BLOB_NAME }} --auth-mode login
467+
# Re-enable when the Jupyter extension is available
468+
# upload:
469+
# name: Upload VSIX to Azure Blob Storage
470+
# runs-on: ubuntu-latest
471+
# if: github.repository == 'microsoft/vscode-python'
472+
# needs: [tests, smoke-tests, build-vsix]
473+
# env:
474+
# BLOB_CONTAINER_NAME: extension-builds
475+
# BLOB_NAME: ms-python-insiders.vsix
476+
477+
# steps:
478+
# - name: Download VSIX
479+
# uses: actions/download-artifact@v2
480+
# with:
481+
# name: ${{ env.ARTIFACT_NAME_VSIX }}
482+
483+
# - name: Azure Login
484+
# uses: azure/login@v1
485+
# with:
486+
# creds: ${{ secrets.AZURE_CREDENTIALS }}
487+
488+
# - name: Upload to Blob Storage
489+
# run: az storage blob upload --file ${{ env.VSIX_NAME }} --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ env.BLOB_NAME }} --auth-mode login
490+
491+
# - name: Get URL to uploaded VSIX
492+
# run: az storage blob url --account-name pvsc --container-name ${{ env.BLOB_CONTAINER_NAME }} --name ${{ env.BLOB_NAME }} --auth-mode login

0 commit comments

Comments
 (0)