mumrah commented on code in PR #17725: URL: https://github.com/apache/kafka/pull/17725#discussion_r1846911506
########## .github/scripts/junit.py: ########## @@ -332,9 +334,20 @@ def split_report_path(base_path: str, report_path: str) -> Tuple[str, str]: report_md = f"Download [HTML report]({report_url})." summary = (f"{total_run} tests cases run in {duration}. " f"{total_success} {PASSED}, {total_failures} {FAILED}, " - f"{total_flaky} {FLAKY}, {total_skipped} {SKIPPED}, and {total_errors} errors.") + f"{total_flaky} {FLAKY}, {total_skipped} {SKIPPED}, {len(quarantined_table)} {QUARANTINED}, and {total_errors} errors.") print("## Test Summary\n") print(f"{summary} {report_md}\n") + if len(quarantined_table) > 0: + logger.info(f"Ran {len(quarantined_table)} quarantined test:") + print("<details>") + print(f"<summary>{len(quarantined_table)} Quarantined Tests</summary>\n") Review Comment: I agree, let me see if I can clean things up -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org