You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hypothesis users
Hello,
There’s a section Test statistics that Hypothesis may print after running. Is it possible to access the statistics of individual function runs programmatically? For example,
@given(foo=st.text())
def test_something(foo):
assert foo
test_something()
# Get statistics here?
I ask because it would help to add a few meaningful asserts that would allow me to reason about the behavior of the function given various different examples of foo.