Skip to content

Commit f454fb3

Browse files
committed
lower threshold for successful test for now
We need to do something more intelligent with this threshold It is causing too many tests to fail.
1 parent 74f3cb3 commit f454fb3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

smallfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@
4747
OK = 0 # system call return code for success
4848
NOTOK = 1
4949
KB_PER_GB = 1 << 20
50-
pct_files_min = 90 # min % of files considered acceptable for a test run
50+
51+
# min % of files processed considered acceptable for a test run
52+
# this should be a parameter but we'll just lower it to 70% for now
53+
# FIXME: should be able to calculate default based on thread count, etc.
54+
pct_files_min = 70
5155

5256
# we have to support a variety of python environments,
5357
# so for optional features don't blow up if they aren't there, just remember

0 commit comments

Comments
 (0)