Skip to content

Commit f11d2a9

Browse files
committed
fix(reduce): disable lithium repeat last feature
This can lead to very long running reduction jobs while adding little to no benefit with unreliable test cases. This is already accounted for with our stability measurement.
1 parent 84a9668 commit f11d2a9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/grizzly/reduce/strategies/lithium.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def __init__(self, testcases: list[TestCase]) -> None:
4848
testcases.
4949
"""
5050
super().__init__(testcases)
51+
self.minimize_repeat = "never"
5152
self._current_feedback: bool | None = None
5253
self._current_reducer: ReductionIterator | None = None
5354
self._files_to_reduce: list[Path] = []

0 commit comments

Comments
 (0)