Skip to content

Commit ef2f914

Browse files
committed
Filter only bugs for pm score table
Signed-off-by: ratamir <[email protected]>
1 parent 703e2e6 commit ef2f914

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

helpers.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,8 @@ def get_dev_backlog(version):
486486
"status",
487487
"component",
488488
"severity",
489-
"creation_time"
489+
"creation_time",
490+
"keywords",
490491
],
491492

492493
}

release_readiness_criteria.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232

3333
# Sleep to ensure no exception will raise from Google API due to writes limit
3434
time.sleep(40)
35-
top_10_bugs = sort_by_pm_score(get_dev_backlog(""))[:10]
35+
bugs_for_pm_score = filter_only_bugs(get_dev_backlog(""))
36+
top_10_bugs = sort_by_pm_score(bugs_for_pm_score)[:10]
3637
for idx, bug in enumerate(top_10_bugs):
3738
row = 10 + idx
3839
column = 7

0 commit comments

Comments
 (0)