fix(ci): don't have to specify interpreter for maturin develop

This commit is contained in:
Anand Balakrishnan 2023-10-05 23:34:11 -07:00
parent 22479aa7af
commit 29040fd0e6
No known key found for this signature in database

View file

@ -48,7 +48,7 @@ jobs:
run: cargo test --release
- name: Build wheels
shell: bash -el {0}
run: maturin develop --release -i ${{ matrix.python-version }} --manifest-path pyargus/Cargo.toml
run: maturin develop --release --manifest-path pyargus/Cargo.toml
- name: Python Tests
if: matrix.target == 'x86_64'
shell: bash -el {0}
@ -90,7 +90,7 @@ jobs:
run: cargo test --release
- name: Build wheels
shell: pwsh
run: maturin develop --release -i ${{ matrix.python-version }} --manifest-path pyargus/Cargo.toml
run: maturin develop --release --manifest-path pyargus/Cargo.toml
- name: Python Tests
shell: pwsh
run: pytest pyargus
@ -133,7 +133,7 @@ jobs:
run: cargo test --release
- name: Build wheels
shell: bash -el {0}
run: maturin develop --release -i ${{ matrix.python-version }} --manifest-path pyargus/Cargo.toml
run: maturin develop --release --manifest-path pyargus/Cargo.toml
- name: Python Tests
shell: bash -el {0}
run: pytest pyargus