我正在尝试将 codecov.io 与 BitRise 和 BitBucket 一起使用。我可以从发布到 CodeCov.io 的拉取请求中获取代码覆盖率报告,但不能从 bitbucket 拉取请求评论中获取代码覆盖率报告。
我在 repo 中添加了一个 codecov.yaml 文件,如下所示:
comment:
layout: "reach, diff, flags, files"
behavior: default
require_changes: false # if true: only post the comment if coverage changes
require_base: no # [yes :: must have a base report to post]
require_head: no # [yes :: must have a head report to post]
branches: null
而且我还设置了一个新的 bitbucket 用户,该用户对 repo 具有写访问权限,我也使用该用户登录了 codecov.io,并且我通过编辑 Team.yaml 文件将此用户设置为“codecov bot”,如下所示:
codecov:
bot: codecovbot
我还需要做些什么才能使其正常工作吗?