71
71
72
72
- name : Install other Python requirements
73
73
run : |
74
- python -m pip --disable-pip-version-check install -t ./python_files/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
75
74
python -m pip install --upgrade -r build/test-requirements.txt
76
75
77
76
- name : Run Pyright
@@ -176,11 +175,6 @@ jobs:
176
175
with :
177
176
python-version : ${{ matrix.python }}
178
177
179
- - name : Install debugpy
180
- run : |
181
- # We need to have debugpy so that tests relying on it keep passing, but we don't need install_debugpy's logic in the test phase.
182
- python -m pip --disable-pip-version-check install -t ./python_files/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
183
-
184
178
- name : Download get-pip.py
185
179
run : |
186
180
python -m pip install wheel
@@ -203,14 +197,6 @@ jobs:
203
197
- name : Install test requirements
204
198
run : python -m pip install --upgrade -r build/test-requirements.txt
205
199
206
- - name : Install debugpy wheels (Python ${{ matrix.python }})
207
- run : |
208
- python -m pip install wheel
209
- python -m pip --disable-pip-version-check install -r build/build-install-requirements.txt
210
- python ./python_files/install_debugpy.py
211
- shell : bash
212
- if : matrix.test-suite == 'debugger'
213
-
214
200
- name : Install functional test requirements
215
201
run : python -m pip install --upgrade -r ./build/functional-test-requirements.txt
216
202
if : matrix.test-suite == 'functional'
@@ -408,11 +394,6 @@ jobs:
408
394
requirements-file : ' ./python_files/jedilsp_requirements/requirements.txt'
409
395
options : ' -t ./python_files/lib/jedilsp --implementation py'
410
396
411
- - name : Install debugpy
412
- run : |
413
- # We need to have debugpy so that tests relying on it keep passing, but we don't need install_debugpy's logic in the test phase.
414
- python -m pip --disable-pip-version-check install -t ./python_files/lib/python --implementation py --no-deps --upgrade --pre debugpy
415
-
416
397
- name : Install test requirements
417
398
run : python -m pip install --upgrade -r build/test-requirements.txt
418
399
0 commit comments