From 8a026d30069ecf1eebd9cf2173d08187d186727d Mon Sep 17 00:00:00 2001 From: Andrew Kesterson Date: Mon, 27 Jul 2026 21:15:13 -0400 Subject: [PATCH] Include passed tests in the JUnit report summary The reporter warned "No annotations found ... configure 'include_passed' as 'true'" because with annotate_only the summary only listed failures. Set include_passed: true on both reporter steps so the job summary table lists the passing tests too. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitea/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 4e25fc5..974f152 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -33,6 +33,7 @@ jobs: report_paths: 'ctest-junit.xml' annotate_only: true detailed_summary: true + include_passed: true fail_on_failure: 'true' - run: echo "🍏 This job's status is ${{ job.status }}." @@ -63,5 +64,6 @@ jobs: report_paths: 'mutation-junit.xml' annotate_only: true detailed_summary: true + include_passed: true fail_on_failure: 'false' - run: echo "🍏 This job's status is ${{ job.status }}."