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:
Marco Castelluccio 2019-11-21 12:53:55 +01:00
Родитель 1e8c2b3ca9
Коммит d8c62e9e0a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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