We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 032eedc commit 10d4128Copy full SHA for 10d4128
.github/workflows/test.yaml
@@ -77,7 +77,7 @@ jobs:
77
uses: actions/cache@v5
78
with:
79
path: ~/.cargo
80
- key: cargo-cache-${{ steps.rust-toolchain.outputs.cachekey }}-${{ hashFiles('Cargo.lock') }}
+ key: cargo-cache-${{ matrix.toolchain }}-${{ hashFiles('Cargo.lock') }}
81
82
- name: Run Clippy
83
if: ${{ matrix.python-version == '3.10' && matrix.toolchain == 'stable' }}
@@ -93,9 +93,7 @@ jobs:
93
RUST_BACKTRACE: 1
94
run: |
95
git submodule update --init
96
- uv sync --dev --no-install-package datafusion
97
- uv run --no-project maturin develop --uv
98
- uv run --no-project pytest -v .
+ uv run --no-project pytest -v --import-mode=importlib
99
100
- name: FFI unit tests
101
0 commit comments