-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove 'default-members' in workspace, default to all crates #752
fix: remove 'default-members' in workspace, default to all crates #752
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #752 +/- ##
=======================================
Coverage 84.36% 84.36%
=======================================
Files 81 81
Lines 19246 19246
Branches 19246 19246
=======================================
Hits 16236 16236
Misses 2205 2205
Partials 805 805 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgmt
@@ -54,6 +54,8 @@ impl Drop for FileReadResultIterator { | |||
/// | |||
/// The iterator must be valid (returned by [`read_parquet_file`]) and not yet freed by | |||
/// [`free_read_result_iter`]. The visitor function pointer must be non-null. | |||
/// | |||
/// [`free_engine_data`]: crate::free_engine_data |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ohh nm, i guess it creates the link in the docs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep!
Problem: new contributors have compilation errors which aren't raised when they run a normal
cargo test
orcargo nextest run
since FFI crate (among others) aren't built by default.Solution: remove
default-members = ["acceptance", "kernel"]
in our workspace'sCargo.toml
in order to default to building all crates.This PR includes the update above + some fixes for docs, clippy, etc. and modifies how we run
clippy --no-default-features
in CI so that we actually check kernel without any features enabled.