Setting coverage values for probabilistic generators #801
mitches-got-glitches
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm looking for a way to set the coverage values for unique combinations in a set or collection, so that I can get the coverage I want. Is there currently a method in the API that can help with this?
Here's a rough demonstration of what I want:
Output:
Coverage produces this... contact_by={'email'} contact_by={'mobile'} contact_by={'post'} But I want all of these combinations... () ('email',) ('mobile',) ('post',) ('email', 'mobile') ('email', 'post') ('mobile', 'post') ('email', 'mobile', 'post')Beta Was this translation helpful? Give feedback.
All reactions