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 3a87ac5 commit e49efc4Copy full SHA for e49efc4
qa/tools/apex_algorithm_qa_tools/github_issue_handler.py
@@ -490,6 +490,9 @@ def main(self) -> None:
490
i for i in all_existing_issues if i["title"] == issue_title
491
]
492
493
+ logger.info(
494
+ f"{scenario_id=} {outcome=} {failing_test=} {len(existing_issues)=}"
495
+ )
496
if failing_test and not existing_issues:
497
logger.info(
498
f"Creating new issue for newly failing scenario {scenario_id!r}"
@@ -509,6 +512,8 @@ def main(self) -> None:
509
512
issue_number=issue_number,
510
513
body=scenario_run_info.build_comment_body(),
511
514
)
515
+ else:
516
+ logger.info(f"Nothing to do for {scenario_id=}")
517
518
519
if __name__ == "__main__":
0 commit comments