Skip to content

Commit 68c4377

Browse files
committed
fix: include test dependency group in docs-scripts CI job
uv sync --locked does not install pytest since it lives in the test dependency group. Changed to --group test to make pytest available. JIRA: trivial risk: nonprod
1 parent 6784c8a commit 68c4377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rw-python-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python-version: 3.14
5757
- name: Install dependencies
5858
run: |
59-
uv sync --locked
59+
uv sync --group test --locked
6060
- name: Test docs scripts
6161
run: |
6262
make test-docs-scripts

0 commit comments

Comments
 (0)