I must be missing something simple. I run this program:
from hypothesis import given
import hypothesmith as hs
@given(hs.from_grammar("eval_input"))
@settings(max_examples=50)
def test(expr):
print(repr(expr))
test()
This prints examples like these:
'A'
'A\n'
'A,A,'
'A,A'
'A,'
'A,A,\n'
'A\n'
'AorA,A'
'AorA,'
'A,\n'
'lambda:A,\n'
I am pretty sure it meant A or A, not AorA. (I saw more similar example in other runs and variations of the program.)
It also occasionally prints a traceback and this error:
hypothesis.errors.FailedHealthCheck: It looks like your strategy is filtering out a lot of data. Health check fo
und 50 filtered examples but only 6 good ones. This will make your tests much slower, and also will probably dis
tort the data generation quite a lot. You should adapt your strategy to filter less. This can also be caused by
a low max_leaves parameter in recursive() calls
This is Python 3.9.2 on Windows.
hypothesis 6.13.0
hypothesmith 0.1.8
I figure I'm doing something wrong or not understanding something?
I must be missing something simple. I run this program:
This prints examples like these:
I am pretty sure it meant
A or A, notAorA. (I saw more similar example in other runs and variations of the program.)It also occasionally prints a traceback and this error:
This is Python 3.9.2 on Windows.
I figure I'm doing something wrong or not understanding something?