Skip to content

Commit 81b93d0

Browse files
committed
fix: switch to maturin develop
1 parent 8d0d210 commit 81b93d0

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/_test.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,19 @@ jobs:
1616
- run: rustup toolchain install stable --profile minimal
1717
- name: Rust Cache
1818
uses: Swatinem/[email protected]
19-
- name: Build
20-
run: cargo build --verbose
2119
- name: Run Rust tests
2220
run: cargo test --verbose
2321

2422
- uses: actions/setup-python@v5
2523
with:
2624
python-version: ${{ matrix.python-version }}
2725
cache: 'pip'
28-
29-
- name: Install dependencies
26+
- name: Install Python dependencies
3027
run: |
31-
pip3 install .
32-
pip3 install pytest
33-
28+
pip3 install maturin pytest
29+
- name: Build Python bindings
30+
run: |
31+
maturin develop
3432
- name: Run Python tests
3533
run: |
36-
cd python
37-
pytest cocoindex/tests
34+
pytest python/cocoindex/tests

0 commit comments

Comments
 (0)