File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ jobs:
202202 working-directory : ${{ env.WORKING_DIR }}
203203 run : |
204204 git add .
205- pre-commit run --all-files
205+ .venv/bin/ pre-commit run --all-files
206206 - name : make .env
207207 working-directory : ${{ env.WORKING_DIR }}
208208 run : touch .env
@@ -211,7 +211,7 @@ jobs:
211211 run : docker compose up -d
212212 - name : Test with pytest
213213 working-directory : ${{ env.WORKING_DIR }}
214- run : python -m pytest -n auto
214+ run : .venv/bin/ pytest -n auto
215215 test-setuptools-non-fastapi-project :
216216 name : test-fastapi-setuptools-setup-non-fastapi
217217 strategy :
@@ -238,11 +238,11 @@ jobs:
238238 working-directory : ${{ env.WORKING_DIR }}
239239 run : |
240240 git add .
241- pre-commit run --all-files
241+ .venv/bin/ pre-commit run --all-files
242242 - name : Test with pytest
243243 working-directory : ${{ env.WORKING_DIR }}
244244 if : matrix.project_type == 'application'
245- run : python -m pytest
245+ run : .venv/bin/ pytest
246246 test-pyo3-uv-fastapi-project :
247247 name : test-fastapi-pyo3-uv-setup-fastapi
248248 strategy :
You can’t perform that action at this time.
0 commit comments