We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74f3cb3 commit f454fb3Copy full SHA for f454fb3
smallfile.py
@@ -47,7 +47,11 @@
47
OK = 0 # system call return code for success
48
NOTOK = 1
49
KB_PER_GB = 1 << 20
50
-pct_files_min = 90 # min % of files considered acceptable for a test run
+
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
55
56
# we have to support a variety of python environments,
57
# so for optional features don't blow up if they aren't there, just remember
0 commit comments