Skip to content

Commit 6235926

Browse files
d-krupkeclaude
andcommitted
Fix CI: install pytest before ty check so imports resolve
The lint job runs `ty check src tests` but only had runtime deps installed. pytest was missing, causing unresolved-import errors. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 86a6ce5 commit 6235926

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/pytest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
ruff check src tests
2323
- name: Type check with ty
2424
run: |
25+
pip install pytest
2526
pip install -e .
2627
ty check src tests
2728

0 commit comments

Comments
 (0)