Skip to content

Commit 0b00c27

Browse files
committed
chore(ci): add step to install test dependencies in GitHub Actions workflow to ensure all necessary packages are available before running tests
1 parent 423ccbd commit 0b00c27

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install uv
2929
30+
- name: Install test dependencies
31+
run: |
32+
uv install --category test
33+
3034
- name: Run tests
3135
run: |
3236
uv run pytest

0 commit comments

Comments
 (0)