From 549ca0e10d65de4981c42f833ac7d349c24c48a0 Mon Sep 17 00:00:00 2001 From: Agustin Borgna Date: Mon, 3 Jun 2024 14:20:45 +0100 Subject: [PATCH] `maturin develop` instead of `maturin build` --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a27bc705..7a0a18af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -158,8 +158,7 @@ jobs: - name: Build pyo3 bindings run: | poetry install - poetry run maturin build - poetry add target/wheels/*.whl + poetry run maturin develop - name: Run python tests with coverage instrumentation run: poetry run pytest --cov=./ --cov-report=xml - name: Upload python coverage to codecov.io