-
Notifications
You must be signed in to change notification settings - Fork 488
test: improve storage config testing #3485
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
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3485 +/- ##
==========================================
+ Coverage 71.23% 71.35% +0.11%
==========================================
Files 149 149
Lines 44862 44932 +70
Branches 44862 44932 +70
==========================================
+ Hits 31959 32061 +102
+ Misses 10822 10798 -24
+ Partials 2081 2073 -8 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
cd46235
to
61e6cb6
Compare
crates/core/Cargo.toml
Outdated
@@ -95,6 +95,7 @@ maplit = "1" | |||
sqlparser = { version = "0.56.0" } | |||
humantime = { version = "2.1.0" } | |||
validator = { version = "0.19", features = ["derive"] } | |||
rstest = { version = "0.25.0", optional = true } |
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.
I'm not seeing a reason why this doesn't just get put into the [dev-dependencies]
section, was there something that broke when that was done?
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.
I could revert this - the main thing is that we can export it under the integration_test
feature, and use it in other crates.
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.
but turns out the way we are using it, it does no longer need to be a fixture ... will remove that.
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.
gone
Signed-off-by: Robert Pack <[email protected]>
61e6cb6
to
fb69733
Compare
Description
On a mission to improve test coverage before the 1.0 release. Starting with storage config and object store registry. Also moving fixtures around a bit preparing for more testing ...
also includes one
cargo clippy
.