@@ -106,7 +106,7 @@ jobs:
106106 - name : Install Python dependencies
107107 run : |
108108 python3 -m pip install --upgrade pip
109- python3 -m pip install -r requirements- test.txt
109+ python3 -m pip install --group test
110110 python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
111111 - name : Disable ptrace security restrictions
112112 run : |
@@ -141,7 +141,7 @@ jobs:
141141 sudo apt-get install -qy gdb
142142 - name : Install Python dependencies
143143 run : |
144- uv pip install -r requirements- test.txt
144+ uv pip install --group test
145145 uv pip install --no-index --find-links=dist/ --only-binary=pystack pystack
146146 - name : Disable ptrace security restrictions
147147 run : |
@@ -176,7 +176,7 @@ jobs:
176176 - name : Install Python dependencies
177177 run : |
178178 python${{matrix.python_version}} -m pip install --upgrade pip
179- python${{matrix.python_version}} -m pip install -r requirements- test.txt
179+ python${{matrix.python_version}} -m pip install --group test
180180 python${{matrix.python_version}} -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
181181 - name : Disable ptrace security restrictions
182182 run : |
@@ -214,7 +214,7 @@ jobs:
214214 - name : Install Python dependencies
215215 run : |
216216 python${{matrix.python_version}} -m pip install --upgrade pip
217- python${{matrix.python_version}} -m pip install -r requirements- test.txt
217+ python${{matrix.python_version}} -m pip install --group test
218218 python${{matrix.python_version}} -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
219219 - name : Disable ptrace security restrictions
220220 run : |
@@ -253,7 +253,7 @@ jobs:
253253 - name : Install Python dependencies
254254 run : |
255255 python${{matrix.python_version}} -m pip install --upgrade pip
256- python${{matrix.python_version}} -m pip install -r requirements- test.txt
256+ python${{matrix.python_version}} -m pip install --group test
257257 python${{matrix.python_version}} -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
258258 - name : Install setuptools for the free-threading version
259259 run : |
@@ -290,7 +290,7 @@ jobs:
290290 run : |
291291 python3 -m venv venv
292292 venv/bin/python3 -m pip install --upgrade pip
293- venv/bin/python3 -m pip install -r requirements- test.txt
293+ venv/bin/python3 -m pip install --group test
294294 venv/bin/python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
295295 - name : Run pytest
296296 env :
@@ -326,7 +326,7 @@ jobs:
326326 - name : Install Python dependencies
327327 run : |
328328 python3 -m pip install --upgrade pip
329- python3 -m pip install -r requirements- test.txt
329+ python3 -m pip install --group test
330330 python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
331331 - name : Run pytest
332332 env :
@@ -364,7 +364,7 @@ jobs:
364364 run : |
365365 python -m venv venv
366366 venv/bin/python -m pip install --upgrade pip
367- venv/bin/python -m pip install -r requirements- test.txt
367+ venv/bin/python -m pip install --group test
368368 venv/bin/python -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
369369 - name : Run pytest
370370 env :
@@ -402,7 +402,7 @@ jobs:
402402 run : |
403403 python3 -m venv venv
404404 venv/bin/python3 -m pip install --upgrade pip
405- venv/bin/python3 -m pip install -r requirements- test.txt
405+ venv/bin/python3 -m pip install --group test
406406 venv/bin/python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
407407 - name : Run pytest
408408 env :
0 commit comments