Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Patch Status should compare to merge-base instead of HEAD #83

Open
sfgeorge opened this issue Jul 28, 2017 · 10 comments
Open

Patch Status should compare to merge-base instead of HEAD #83

sfgeorge opened this issue Jul 28, 2017 · 10 comments

Comments

@sfgeorge
Copy link
Contributor

A common false-positive I see from Codecov is as follows

  1. I create a pull request which Codecov reports green as improving code coverage by ~ 1%. ✅
  2. Separately, a colleague's PR which improves coverage by ~ 4% is merged into the integration branch. ✅
  3. I trigger a new build on my PR - and now Codecov falsely reports that the Patch Status for the change in coverage introduced by my PR would purportedly decrease coverage by ~3%. ❌

The problem: The base of comparison being used is the latest-and-greatest of the integration branch, even though I branched off from an older commit of the integration branch.

One work-around is for me to simply rebase my feature branch atop the integration branch, and rebuild to get an accurate delta.

But it would be ideal if Codecov did a comparison against the merge-base for the PR. In git terms that would be git merge-base integration-branch feature-branch.

@stevepeak
Copy link
Contributor

stevepeak commented Jul 31, 2017

Can you diagram this out? Because from my understand this is not an expected behavior.

The base commit used for comparison would only change if the pull request is rebased, not upon new commits to the base branch.

Please see https://docs.codecov.io/docs/comparing-commits for more details.

@marc-hb
Copy link

marc-hb commented Feb 22, 2019

The base commit used for comparison would only change if the pull request is rebased, not upon new commits to the base branch.

@sfgeorge and I wish. This is totally not happening at for instance https://github.com/zephyrproject-rtos/zephyr/pulls. Unless the submitter constantly rebases, even for a fixing a typo, the codecov report for is:open requests is useless because polluted by a daily stream of newer and completely unrelated commits.

In other words all reports compare PR with master instead of comparing PR with PRbase as they should

master PRbase . . . . . master=wrong!
pull      \ . . PR

Here's a specific example at zephyrproject-rtos/zephyr#13608

Merging #13608 into master will decrease coverage by 0.03%
=> obviously WRONG, look at the one-line change
...
Powered by Codecov. Last update 992f29a...b40d6d0. Read the comment docs.

b40d6d0 is the PR and 992f29a is newer by 112 commits so 992f29a is clearly not the PR base!

(Not sure about is:closed requests, they seem OK. I don't care much about is:closed in this project)

@marc-hb
Copy link

marc-hb commented Feb 22, 2019

One may suggest: "just rebase all the time". Sure, it's a mitigation. However:

  • it's racy, so just a mitigation. There will still be broken codecov reports, just less frequently.
  • github doesn't seem able to filter out rebase noise. So a reviewer who has thoroughly reviewed version 5 of the submission and wants to focus on the difference between version 5 and 6 is spammed by unrelated changes from unrelated commits if candidate version 6 is rebased.

@marc-hb
Copy link

marc-hb commented Apr 22, 2019

For zephyr the "solution" was unfortunately to disable/remove the codecov spam.

@zFernand0
Copy link

Are there any updates on this issue?
We've had unexpected behavior for quite some time now and we captured it here: zowe/zowe-explorer-vscode#296 (comment)

@earonesty
Copy link

earonesty commented Mar 31, 2020

Is there a workaround where we can specify the merge base to codecov? This is getting to the point where it's a showstopper on more complex/bigger projects.

@juanvillegas
Copy link

Any updates on this? It's practically useless for us because the PR has to rebase (or worse, merge) the base before triggering the build, and that creates a really bad practice among our team.

@marc-h38
Copy link

Some hopefully relevant discussions and pointers:

@juanvillegas
Copy link

@marc-h38 I'm having a hard time trying to understand how those links are relevant to this discussion. Are you trying to infer that there is work to be done here to get to the desired behavior and those pointers should serve as reference?

@thomasrockhu thomasrockhu removed their assignment Jul 21, 2021
@eivindjahren
Copy link

So for anyone dealing with this issue in terms of github actions: Jobs run with on: [push] will run the latest commit in the PR but jobs run with on: [pull_request] will merge first and then run. If you are using the codecov uploader action then it will upload with the SHA being the pre-merged commit, but it does not change the base. So the base it compares against might be an outdated commit in the main branch while your PR was merged into an up to date main branch when the report was created.

eivindjahren added a commit to equinor/ert that referenced this issue May 30, 2022
As per codecov/codecov-bash#83
codecov has issues with github actions triggered by pullrequest.
To remedy the situation, we use push as a trigger instead.
eivindjahren added a commit to equinor/ert that referenced this issue May 30, 2022
As per codecov/codecov-bash#83
codecov has issues with github actions triggered by pullrequest.
To remedy the situation, we use push as a trigger instead.
eivindjahren added a commit to equinor/ert that referenced this issue May 30, 2022
As per codecov/codecov-bash#83
codecov has issues with github actions triggered by pullrequest.
To remedy the situation, we use push as a trigger instead.
eivindjahren added a commit to equinor/ert that referenced this issue May 31, 2022
As per codecov/codecov-bash#83
codecov has issues with github actions triggered by pullrequest.
To remedy the situation, we use push as a trigger instead.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
Development

No branches or pull requests

9 participants