I want to use hypothesis @example and a pytest fixture for the same test method, i.e.
where `use_live_db` is a fixture defined in another fixtures-only file. However, pytest gets confused:
test setup failed
@example(test_judge="Koh&q=Arg2")
def test_search_judges(use_live_db, test_judge):
E fixture 'test_judge' not found
> use 'pytest --fixtures [testpath]' for help on them.
How do I circumvent this error?
Thank you,
Mel