From 2fc90b29ef58380c7775fab2f34e41daa8516d6c Mon Sep 17 00:00:00 2001 From: Scott Lessans Date: Tue, 5 Aug 2025 11:56:46 -0700 Subject: [PATCH] wip --- .github/actions/run-rust-python-tests/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/run-rust-python-tests/action.yml b/.github/actions/run-rust-python-tests/action.yml index ed62480..6ff2650 100644 --- a/.github/actions/run-rust-python-tests/action.yml +++ b/.github/actions/run-rust-python-tests/action.yml @@ -31,10 +31,10 @@ runs: run: | python -m pip install --upgrade pip - - name: Install build/test deps + - name: Install test deps shell: bash run: | - python -m pip install maturin pytest + python -m pip install pytest - name: Check rustfmt shell: bash @@ -56,10 +56,10 @@ runs: run: | cargo test --doc - - name: Build Python extension (maturin develop) + - name: Build and install Python package shell: bash run: | - maturin develop --release + pip install . - name: Run pytest shell: bash