Skip to content

Commit 42a1530

Browse files
committed
fix: install python dependencies in venv
1 parent 1adebba commit 42a1530

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/_test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
cache: 'pip'
31-
- name: Install Python global dependencies
32-
run: |
33-
pip install maturin pytest
3431
- uses: actions/cache@v4
3532
with:
3633
path: .venv
@@ -41,5 +38,7 @@ jobs:
4138
run: |
4239
python -m venv .venv
4340
source .venv/bin/activate
41+
pip install maturin pytest
4442
maturin develop
45-
pytest python/cocoindex/tests
43+
cd python
44+
pytest cocoindex/tests

0 commit comments

Comments
 (0)