Skip to content

Commit f8e00e3

Browse files
authored
[ty] Ignore slow seeds as a temporary measure (#20870)
## Summary Basically what @AlexWaygood suggested [here](#20802 (comment)) (thank you). ## Test Plan CI on this PR
1 parent 591e9bb commit f8e00e3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
env:
143143
MERGE_BASE: ${{ steps.merge_base.outputs.sha }}
144144
run: |
145-
if git diff --quiet "${MERGE_BASE}...HEAD" -- 'python/py_fuzzer/**' \
145+
if git diff --quiet "${MERGE_BASE}...HEAD" -- 'python/py-fuzzer/**' \
146146
; then
147147
echo "changed=false" >> "$GITHUB_OUTPUT"
148148
else

python/py-fuzzer/fuzz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ def print_description(self, index: int, num_seeds: int) -> None:
152152

153153
def fuzz_code(seed: Seed, args: ResolvedCliArgs) -> FuzzResult:
154154
"""Return a `FuzzResult` instance describing the fuzzing result from this seed."""
155-
# TODO(carljm) debug slowness of this seed
156-
skip_check = seed in {208}
155+
# TODO debug slowness of these seeds
156+
skip_check = seed in {32, 56, 208}
157157

158158
code = generate_random_code(seed)
159159
bug_found = False

0 commit comments

Comments
 (0)