Only store the three latest examples of previous regressions

I inadvertently changed the script to store all previous regressions, which makes the artifact huge.

Fixes a regression from 9f9050c893
This commit is contained in:
Marco Castelluccio 2020-11-12 22:53:55 +01:00
Родитель a987ffda6b
Коммит 05d2022d69
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -274,7 +274,7 @@ class LandingsRiskReportGenerator(object):
prev_fixed_bug_blocked_bugs
)
commit_group["prev_regressions"] = prev_regressions
commit_group["prev_regressions"] = prev_regressions[-3:]
commit_group["prev_fixed_bugs"] = prev_fixed_bugs[-3:]
commit_group["prev_regression_blocked_bugs"] = prev_regression_blocked_bugs[
-3: