Skip to content

Commit f4ae0d9

Browse files
nadavisclaude
andcommitted
fix: split pip install commands to ensure package is installed before pytest
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d08dab4 commit f4ae0d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
python-version: ${{ matrix.python-version }}
2525

2626
- name: Install dependencies
27-
run: pip install pytest -e .
27+
run: |
28+
pip install -e .
29+
pip install pytest
2830
2931
- name: Run tests
3032
run: pytest tests/ -q

0 commit comments

Comments
 (0)