Closed charles-cooper closed 1 month ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 46.12%. Comparing base (
a70a024
) to head (bd5b4f1
). Report is 6 commits behind head on master.:exclamation: There is a different number of reports uploaded between BASE (a70a024) and HEAD (bd5b4f1). Click for more details.
HEAD has 138 uploads less than BASE
| Flag | BASE (a70a024) | HEAD (bd5b4f1) | |------|------|------| ||139|1|
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
What I did
fix https://github.com/vyperlang/vyper/issues/4308
How I did it
How to verify it
Commit message
this is due to how git computes the shorthash. when checkout is run for release-pypi.yml, it doesn't fetch the full commit history, and so there are fewer commits, so
git rev-parse --short HEAD
returns a smaller fingerprint for the commit hash.this commit amends the pypi release checkout step so that it matches the github release workflow.
it also adds a debug step to the relevant workflows so that we can debug the commit hash during the github action.