@@ -388,68 +388,68 @@ jobs:
388388 with :
389389 run : node --no-force-async-hooks-checks ./out/test/smokeTest.js
390390
391- insider-tests :
392- name : Insider tests
393- if : github.repository == 'microsoft/vscode-python'
394- runs-on : ${{ matrix.os }}
395- strategy :
396- fail-fast : false
397- matrix :
398- # We're not running CI on macOS for now because it's one less matrix entry to lower the number of runners used,
399- # macOS runners are expensive, and we assume that Ubuntu is enough to cover the UNIX case.
400- os : [ubuntu-latest]
401- python : [3.8] # For Jupyter.
402- steps :
403- - name : Checkout
404- uses : actions/checkout@v2.3.4
405-
406- - name : Install Node
407- uses : actions/setup-node@v2.1.5
408- with :
409- node-version : ${{env.NODE_VERSION}}
410-
411- - name : Use Python ${{matrix.python}}
412- uses : actions/setup-python@v2
413- with :
414- python-version : ${{matrix.python}}
415-
416- - name : Install dependencies (npm ci)
417- run : npm ci --prefer-offline
418-
419- - name : pip install system test requirements
420- run : |
421- python -m pip install --upgrade -r build/test-requirements.txt
422- python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade -r requirements.txt
423- python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
424- shell : bash
425-
426- - name : pip install smoke test requirements
427- run : |
428- python -m pip install --upgrade -r build/smoke-test-requirements.txt
429- shell : bash
430-
431- # Compile the test files.
432- - name : Prepare for insiders tests
433- run : npm run prePublish
434- shell : bash
435-
436- - name : Set CI_PYTHON_PATH and CI_DISABLE_AUTO_SELECTION
437- run : |
438- echo "CI_PYTHON_PATH=python" >> $GITHUB_ENV
439- echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV
440- shell : bash
441-
442- - name : Run insider tests
443- env :
444- DISPLAY : 10
445- INSTALL_JUPYTER_EXTENSION : true
446- INSTALL_PYLANCE_EXTENSION : true
447- VSC_PYTHON_CI_TEST_VSC_CHANNEL : insiders
448- TEST_FILES_SUFFIX : insiders.test
449- CODE_TESTS_WORKSPACE : ./src/testMultiRootWkspc/smokeTests
450- uses : GabrielBB/xvfb-action@v1.5
451- with :
452- run : node --no-force-async-hooks-checks ./out/test/standardTest.js
391+ # insider-tests:
392+ # name: Insider tests
393+ # if: github.repository == 'microsoft/vscode-python'
394+ # runs-on: ${{ matrix.os }}
395+ # strategy:
396+ # fail-fast: false
397+ # matrix:
398+ # # We're not running CI on macOS for now because it's one less matrix entry to lower the number of runners used,
399+ # # macOS runners are expensive, and we assume that Ubuntu is enough to cover the UNIX case.
400+ # os: [ubuntu-latest]
401+ # python: [3.8] # For Jupyter.
402+ # steps:
403+ # - name: Checkout
404+ # uses: actions/checkout@v2.3.4
405+
406+ # - name: Install Node
407+ # uses: actions/setup-node@v2.1.5
408+ # with:
409+ # node-version: ${{env.NODE_VERSION}}
410+
411+ # - name: Use Python ${{matrix.python}}
412+ # uses: actions/setup-python@v2
413+ # with:
414+ # python-version: ${{matrix.python}}
415+
416+ # - name: Install dependencies (npm ci)
417+ # run: npm ci --prefer-offline
418+
419+ # - name: pip install system test requirements
420+ # run: |
421+ # python -m pip install --upgrade -r build/test-requirements.txt
422+ # python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade -r requirements.txt
423+ # python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
424+ # shell: bash
425+
426+ # - name: pip install smoke test requirements
427+ # run: |
428+ # python -m pip install --upgrade -r build/smoke-test-requirements.txt
429+ # shell: bash
430+
431+ # # Compile the test files.
432+ # - name: Prepare for insiders tests
433+ # run: npm run prePublish
434+ # shell: bash
435+
436+ # - name: Set CI_PYTHON_PATH and CI_DISABLE_AUTO_SELECTION
437+ # run: |
438+ # echo "CI_PYTHON_PATH=python" >> $GITHUB_ENV
439+ # echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV
440+ # shell: bash
441+
442+ # - name: Run insider tests
443+ # env:
444+ # DISPLAY: 10
445+ # INSTALL_JUPYTER_EXTENSION: true
446+ # INSTALL_PYLANCE_EXTENSION: true
447+ # VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
448+ # TEST_FILES_SUFFIX: insiders.test
449+ # CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
450+ # uses: GabrielBB/xvfb-action@v1.5
451+ # with:
452+ # run: node --no-force-async-hooks-checks ./out/test/standardTest.js
453453
454454 upload :
455455 name : Upload VSIX to Azure Blob Storage
0 commit comments