зеркало из https://github.com/mozilla/bugbug.git
Increase the limit for considering commits as too large for test scheduling history generation
We were skipping ~1500 pushes, from now on we will skip ~500.
This commit is contained in:
Родитель
1e8c2b3ca9
Коммит
d8c62e9e0a
|
@ -191,7 +191,7 @@ file = {{ driver = "file", path = "{os.path.abspath(cache_path)}" }}
|
|||
# - Improve shelve perf and go back to consider all files;
|
||||
# - Consider only files which appear with a given frequency, like the "files" feature in commit_features;
|
||||
# - Keep a limit of number of files.
|
||||
if len(merged_commits["files"]) > 20:
|
||||
if len(merged_commits["files"]) > 50:
|
||||
skipped_too_big_commits += 1
|
||||
continue
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче