summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-02-04 11:25:09 -0500
committerJacob Walls <jacobtylerwalls@gmail.com>2026-02-11 13:35:08 -0500
commit92d4aea5ffacc38c5f7903b9410d0abec83f14de (patch)
tree62f182ca4980121ee65d78e4a5450f1a553b8c4a /.github
parentc507aaf9abeff4b93b7f9bdbc55801f2ccfc2d01 (diff)
Refs #36620 -- Shortened coverage diff comment.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/coverage_comment.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/coverage_comment.yml b/.github/workflows/coverage_comment.yml
index fc58575836..287cc558b5 100644
--- a/.github/workflows/coverage_comment.yml
+++ b/.github/workflows/coverage_comment.yml
@@ -45,8 +45,15 @@ jobs:
let body = 'No coverage data available.';
if (fs.existsSync(reportPath)) {
body = fs.readFileSync(reportPath, 'utf8');
+ const divider = '-------------';
+ // Start after the second divder, where changed files are listed.
+ const start = body.indexOf(divider, 1);
+ body = body.substring(start);
}
- const commentBody = '### 📊 Coverage Report for Changed Files\n\n```\n' + body + '\n```\n\n**Note:** Missing lines are warnings only. Some lines may not be covered by SQLite tests as they are database-specific.\n\nFor more information about code coverage on pull requests, see the [contributing documentation](https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#code-coverage-on-pull-requests).';
+ const commentBody = (
+ '#### Uncovered lines in changed files\n\n```\n' + body + '```\n' +
+ + '**Note:** Missing lines are warnings only. Some database-specific lines may not be measured. [More information](https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#code-coverage-on-pull-requests)'
+ );
const prNumber = parseInt(process.env.PR_NUMBER);
if (isNaN(prNumber)) {