[ty] Ignore slow seeds as a temporary measure (#20870)
## Summary Basically what @AlexWaygood suggested [here](https://github.com/astral-sh/ruff/pull/20802#issuecomment-3402218389) (thank you). ## Test Plan CI on this PR
This commit is contained in:
@@ -152,8 +152,8 @@ class FuzzResult:
|
||||
|
||||
def fuzz_code(seed: Seed, args: ResolvedCliArgs) -> FuzzResult:
|
||||
"""Return a `FuzzResult` instance describing the fuzzing result from this seed."""
|
||||
# TODO(carljm) debug slowness of this seed
|
||||
skip_check = seed in {208}
|
||||
# TODO debug slowness of these seeds
|
||||
skip_check = seed in {32, 56, 208}
|
||||
|
||||
code = generate_random_code(seed)
|
||||
bug_found = False
|
||||
|
||||
Reference in New Issue
Block a user