-
Notifications
You must be signed in to change notification settings - Fork 5
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
Tests enhancement #38
Conversation
Cargo.toml
Outdated
@@ -26,11 +26,12 @@ tokio-condvar = { version="0.3", features=["parking_lot"] } | |||
tokio-uring = { version="0.5", optional=true } | |||
tokio-uring-executor = { package="kioto-uring-executor", version="0.1", optional=true } | |||
bloomfilter = { version="1", optional=true } | |||
rand = "0.8.5" |
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 think you can move this to "dev-dependencies"
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.
Done. 679eae2
If you run "just fix-formatting" all the tests should pass. |
Done c44489d |
This pull request has changes to the following files:
Added the following test cases for enhanced coverage of range iteration, random operations, and batched writes :
Added rand crate and updated the tokio dependency to include the “time” feature.