Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/smoke-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ runs:
env:
DISPLAY: 10
INSTALL_JUPYTER_EXTENSION: true
uses: GabrielBB/xvfb-action@v1.5
uses: GabrielBB/xvfb-action@v1.7
with:
run: node --no-force-async-hooks-checks ./out/test/smokeTest.js
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ jobs:
env:
TEST_FILES_SUFFIX: testvirtualenvs
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testSingleWorkspace
working-directory: ${{ env.special-working-directory }}
Expand All @@ -367,7 +367,7 @@ jobs:
- name: Run single-workspace tests
env:
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testSingleWorkspace
working-directory: ${{ env.special-working-directory }}
Expand All @@ -376,7 +376,7 @@ jobs:
- name: Run multi-workspace tests
env:
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testMultiWorkspace
working-directory: ${{ env.special-working-directory }}
Expand All @@ -385,7 +385,7 @@ jobs:
- name: Run debugger tests
env:
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testDebugger
working-directory: ${{ env.special-working-directory }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ jobs:
env:
TEST_FILES_SUFFIX: testvirtualenvs
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testSingleWorkspace
working-directory: ${{ env.special-working-directory }}
Expand All @@ -363,7 +363,7 @@ jobs:
- name: Run single-workspace tests
env:
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testSingleWorkspace
working-directory: ${{ env.special-working-directory }}
Expand All @@ -372,7 +372,7 @@ jobs:
- name: Run debugger tests
env:
CI_PYTHON_VERSION: ${{ matrix.python }}
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testDebugger
working-directory: ${{ env.special-working-directory }}
Expand Down Expand Up @@ -618,15 +618,15 @@ jobs:
TEST_FILES_SUFFIX: testvirtualenvs
CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
CI_DISABLE_AUTO_SELECTION: 1
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testSingleWorkspace:cover

- name: Run single-workspace tests
env:
CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
CI_DISABLE_AUTO_SELECTION: 1
uses: GabrielBB/xvfb-action@v1.6
uses: GabrielBB/xvfb-action@v1.7
with:
run: npm run testSingleWorkspace:cover

Expand All @@ -635,7 +635,7 @@ jobs:
# env:
# CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
# CI_DISABLE_AUTO_SELECTION: 1
# uses: GabrielBB/xvfb-action@v1.6
# uses: GabrielBB/xvfb-action@v1.7
# with:
# run: npm run testMultiWorkspace:cover

Expand All @@ -644,7 +644,7 @@ jobs:
# env:
# CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
# CI_DISABLE_AUTO_SELECTION: 1
# uses: GabrielBB/xvfb-action@v1.6
# uses: GabrielBB/xvfb-action@v1.7
# with:
# run: npm run testDebugger:cover

Expand Down
4 changes: 2 additions & 2 deletions python_files/jedilsp_requirements/requirements.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This file is used to generate requirements.txt.
# To update requirements.txt, run the following commands.
# Use Python 3.8 when creating the environment or using pip-tools
# 1) pip install pip-tools
# 2) pip-compile --generate-hashes --upgrade python_files\jedilsp_requirements\requirements.in
# 1) Install `uv` https://docs.astral.sh/uv/getting-started/installation/
# 2) uv pip compile --generate-hashes --upgrade python_files\jedilsp_requirements\requirements.in > python_files\jedilsp_requirements\requirements.txt

jedi-language-server>=0.34.3
pygls>=0.10.3
Binary file modified python_files/jedilsp_requirements/requirements.txt
Binary file not shown.
4 changes: 2 additions & 2 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is used to generate requirements.txt.
# To update requirements.txt, run the following commands.
# 1) pip install pip-tools
# 2) pip-compile --generate-hashes requirements.in
# 1) Install `uv` https://docs.astral.sh/uv/getting-started/installation/
# 2) uv pip compile --generate-hashes --upgrade requirements.in > requirements.txt

# Unittest test adapter
typing-extensions==4.12.2
Expand Down
Binary file modified requirements.txt
Binary file not shown.
Loading