Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ jobs:
- name: Run Rust tests
run: |
source venv/bin/activate
# arrow-pyarrow's own tests are feature-gated, so the workspace-wide `cargo test` in
# rust.yml (default features) does not build them. They need no interpreter at runtime,
# but pyo3 needs one to link against, hence the active venv.
cargo test -p arrow-pyarrow --all-features
cd arrow-pyarrow-testing
cargo test
- name: Run Python tests
Expand Down
25 changes: 25 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions arrow-pyarrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ bench = false
[package.metadata.docs.rs]
all-features = true

[features]
# Emit the Python type of each conversion into PyO3's introspection data, so that tools like
# `maturin generate-stubs` can put a real type into a generated `.pyi` instead of `Incomplete`.
experimental-inspect = ["pyo3/experimental-inspect"]

[dependencies]
arrow-array = { workspace = true, features = ["ffi"] }
arrow-data = { workspace = true }
Expand Down
Loading
Loading