The Codecov pull request comment is a highly detailed overview of a pull request. It provides details on the coverage changes in the pull request that help with speeding up code review, and ensuring that pull requests are well tested. The comment is customizable to fit your desired needs.
Codecov Delta
It is important to understand what absolute <relative> (impact) represents. Learn all about the Codecov Delta.
To disable the comment, simply set the comment to false in your codecov.yml, as shown below.
commentoff
You can do this in your Team Yaml, to take effect on all your repositories.
comment
layout"reach, diff, flags, files"
behaviordefault
require_changesfalse # if true: only post the comment if coverage changes
require_baseno # [yes :: must have a base report to post]
require_headyes # [yes :: must have a head report to post]
branchesnull # branch names that can post comment
Customize your comment layout by choosing the order and types of components to include. Below is an example of a layout for reach, diff, flags, files.
- Reach is a coverage graph embedded into the comment.
- Learn more here: Graphs: Reach.
- Diff is the Coverage Diff of the pull request.
- Learn more here: Coverage Diff.
- Flags are a list of user defined Flags, and the impact on their coverage
- Learn more about setting up Flags.
- Files are a list of files that are impacted by the pull request (coverage changes, file is new or removed).
Choose the way Codecov submits comments in your pull requests.
default: update, if exists. Otherwise post new.once: update, if exists. Otherwise post new. Skip if deleted.new: delete old and post new.spammy: post new (do not delete old comments).
Emails will be submitted to all subscribers of the pull request only when posting a new comment. There is no way to disable email notifications. This is a limitation of the [[Service Providers]].
You may desire to change when the comment is posted, if any changes are discovered in coverage.
comment
require_changesyes
Comments will now only post when coverage changes. Furthermore, if a comment already exists, and a newer commit results in no coverage change for the entire pull, the comment will be deleted.
You can force comments to post on pull requests even if Codecov doesn't have coverage reports for either the base or head commit. This generally isn't recommended since, without base and head coverage report information, the resulting comment is not very helpful.
However, setting both require_base and require_head to no can allow you to test the ability of Codecov to post a comment to your pull requests without needing to upload coverage for both the base and head commit.
comment
require_headno # default yes
require_baseno # default yes
The branches section allows you to specify which branch(es) the comment is allowed to comments to. For example, specifying master means the comment will only post when the branch of the PR head is master.
You can also negate branches by using !<branch-name>. This will prevent codecov from posting on the specified branch.
comment
branch!develop # never post comments if the PR head is on the develop branch
What's Next
It is important to learn about the Codecov Delta syntax to fully understand pull request comments.
| Codecov Delta |
