We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f46134d commit c69a109Copy full SHA for c69a109
mod_ci/controllers.py
@@ -1564,7 +1564,7 @@ def get_info_for_pr_comment(test_id: int) -> PrCommentInfo:
1564
and_(
1565
RegressionTestOutput.regression_id == TestResult.regression_test_id,
1566
RegressionTestOutput.ignore.is_(True),
1567
- ))).subquery()
+ ))).distinct().subquery()
1568
passed = g.db.query(label('category_id', Category.id), label(
1569
'success', count(regressionTestLinkTable.c.regression_id))).filter(
1570
regressionTestLinkTable.c.regression_id.in_(regression_testid_passed),
0 commit comments