I'd like to create a strategy C that, 90% of the time chooses strategy A, and 10% of the time chooses strategy B.
The random python library does not work even if I seed it since each time the strategy produces values, it generates the same value from random.
I looked at the implementation for OneOfStrategy and they use i = cu.integer_range(data, 0, n - 1) to randomly generate a number
cu is from the internals import hypothesis.internal.conjecture.utils as cu
Would it be fine for my strategy to use cu.integer_range or is there another implementation?