List of keywords you searched for before creating this issue. Write them down here so that others can find this issue more easily and help provide feedback.
"hypothesis"
It would be cool if ruff could automatically detect this hypothesis issue. Much faster to detect statically than during testing.
Catch FAILED src/tests/test_logic.py::test_check_value_is_greater_than_zero - hypothesis.errors.InvalidArgument: You have applied @given to the test test_check_value_is_greater_than_zero more than once, which wraps the test several times and is extremely slow. A similar effect can be gained by combining the arguments of the two calls to given. For example, instead of @given(booleans()) @given(integers()), you could write @given(booleans(), integers())
List of keywords you searched for before creating this issue. Write them down here so that others can find this issue more easily and help provide feedback.
It would be cool if
ruff
could automatically detect thishypothesis
issue. Much faster to detect statically than during testing.