Do less aggressive test sampling when running tests locally
Instead of filtering out 95% of test samples, now only filter out 85%.
This commit is contained in:
parent
05d76c27c1
commit
b1b2c983f8
@ -94,8 +94,8 @@ public abstract class BufferTestSupport {
|
||||
if ("nosample".equalsIgnoreCase(sampleSetting)) {
|
||||
return fixture -> true;
|
||||
}
|
||||
// Filter out 95% of tests.
|
||||
return filterOfTheDay(5);
|
||||
// Filter out 85% of tests.
|
||||
return filterOfTheDay(15);
|
||||
}
|
||||
|
||||
protected static Predicate<Fixture> filterOfTheDay(int percentage) {
|
||||
|
Loading…
Reference in New Issue
Block a user