When using the hypothesis library and performing unit testing, how can I see what instances the library is trying on my code?
Example
from hypothesis import given
import hypothesis.strategies as st
@given(st.integers())
def silly_example(some_number):
assert some_number > 0
The question is: how do I print / see the some_number
variable, generated by the library?