Skip to content

Commit 8f91d19

Browse files
committed
Update dependency installation in CI workflow
Replaces pip install with pip upgrade and Makefile targets for installing dependencies in the validate-test-generation-prompts GitHub Actions workflow.
1 parent 63e6a81 commit 8f91d19

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/validate-test-generation-prompts.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727

2828
- name: Install dependencies
2929
run: |
30-
pip install -e ".[test]"
30+
python -m pip install --upgrade pip
31+
make install-deps
32+
make install
3133
3234
- name: Install Playwright browsers
3335
run: |

0 commit comments

Comments
 (0)