-
Notifications
You must be signed in to change notification settings - Fork 99
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
Add cats.kernel.Hash-based CHAMP HashSet #533
Conversation
@@ -27,6 +27,7 @@ object DefaultScalaCheckPropertyCheckConfig { | |||
final val default: Parameters = Parameters.default | |||
.withMinSuccessfulTests(if (BuildInfo.isJvm) 50 else 5) | |||
.withMaxDiscardRatio(if (BuildInfo.isJvm) 5 else 50) | |||
.withMaxSize(if (BuildInfo.isJvm) 10 else 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 added this to synchronise with cats - without it the tests take a really long time to run
As I understand, it's a latest version from Cats PR, so it's already went through a review regarding code and performance. |
That's definitely the case for the If the plans are for cats-collections to 1.0 in the near future (I hope so!) we should make sure everything is carefully reviewed :) I do think this one is in great shape! |
Codecov Report
@@ Coverage Diff @@
## master #533 +/- ##
=============================
=============================
Help us with your feedback. Take ten seconds to tell us how you rate us. |
Is there anything more to be done here? Anything I can do to move this forward? |
This is a port of typelevel/cats#4185 to cats-collections.