We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
maturin develop
1 parent 8d0d210 commit 81b93d0Copy full SHA for 81b93d0
.github/workflows/_test.yml
@@ -16,22 +16,19 @@ jobs:
16
- run: rustup toolchain install stable --profile minimal
17
- name: Rust Cache
18
uses: Swatinem/[email protected]
19
- - name: Build
20
- run: cargo build --verbose
21
- name: Run Rust tests
22
run: cargo test --verbose
23
24
- uses: actions/setup-python@v5
25
with:
26
python-version: ${{ matrix.python-version }}
27
cache: 'pip'
28
-
29
- - name: Install dependencies
+ - name: Install Python dependencies
30
run: |
31
- pip3 install .
32
- pip3 install pytest
33
+ pip3 install maturin pytest
+ - name: Build Python bindings
+ run: |
+ maturin develop
34
- name: Run Python tests
35
36
- cd python
37
- pytest cocoindex/tests
+ pytest python/cocoindex/tests
0 commit comments