Use the bug IDs of the test failures in the bug retrieval script

Fixes a regression from ae83aa0e0f
This commit is contained in:
Marco Castelluccio 2021-04-03 01:22:19 +02:00
Родитель 1843ef8a6b
Коммит a9f1ea0b75
1 изменённых файлов: 6 добавлений и 3 удалений

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

@ -99,9 +99,12 @@ class Retriever(object):
)
# Get IDs of bugs linked to intermittent failures.
test_failure_bug_ids = test_scheduling.get_failure_bugs(
two_years_and_six_months_ago, datetime.utcnow()
)
test_failure_bug_ids = [
item["bug_id"]
for item in test_scheduling.get_failure_bugs(
two_years_and_six_months_ago, datetime.utcnow()
)
]
if limit:
test_failure_bug_ids = test_failure_bug_ids[-limit:]
logger.info(f"{len(test_failure_bug_ids)} bugs about test failures.")