We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8dd3c commit 4ef4db7Copy full SHA for 4ef4db7
tests/test_flake8_trio.py
@@ -643,7 +643,9 @@ def consume(iterator: Iterable[Any]):
643
644
@pytest.mark.fuzz()
645
class TestFuzz(unittest.TestCase):
646
- @settings(max_examples=1_000, suppress_health_check=[HealthCheck.too_slow])
+ @settings(
647
+ max_examples=1_000, deadline=None, suppress_health_check=[HealthCheck.too_slow]
648
+ )
649
@given((from_grammar() | from_node()).map(ast.parse))
650
def test_does_not_crash_on_any_valid_code(self, syntax_tree: ast.AST):
651
# TODO: figure out how to get unittest to play along with pytest options
0 commit comments