Skip to content

Commit 35eae15

Browse files
committed
fix: Install CLI dependencies to prevent pytest collection hang
- Add --group dev to uv sync commands to install CLI dependencies - This fixes ModuleNotFoundError for typer during test collection - Resolves CI workflow hanging issue that was caused by pytest failing to collect integration tests due to missing CLI dependencies
1 parent f505572 commit 35eae15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/shared.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
version: 0.7.2
4646

4747
- name: Install the project
48-
run: uv sync --frozen --all-extras --python ${{ matrix.python-version }}
48+
run: uv sync --frozen --all-extras --group dev --python ${{ matrix.python-version }}
4949

5050
- name: Run pytest
5151
run: |

0 commit comments

Comments
 (0)