-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v4] Traceback with ValueError
when Git repo is not checked out
#1252
Comments
@webknjaz ahhh I think I know what's causing the problem. If you do run the |
@thomasrockhu-codecov it succeeds in another job that does that, yes. That's why I mentioned Git in the issue title. |
FWIW, I was able to fix this same failure on an ubuntu build by adding a Setup Python step to ensure that 3.10 was installed. I'm now failing because we're sending Edit: now tracking the above as codecov/feedback#263 |
Sounds right, thanks for confirming. I'll take a look and try to debug. |
@dfed do you mind opening a new issue for that? just want to make sure it doesn't get lost in this |
@thomasrockhu-codecov upon closer look, the same errored out log from above has a warning that reveals a secret replacement of the default config filename: #1254. |
@webknjaz @dfed please see the workaround here: codecov/feedback#263 I'm going to close this out in favor of codecov/feedback#263. The error message is not the same, but the root cause is the same |
There's a project where coverage is collected from multiple jobs, stored as GHA artifacts, then combined into a single report in a separate job, that attempts uploading the result. In that job, Git checkout is unnecessary (and even undesired!) so it doesn't happen. The working directory contains an unpacked project source, from a tarball created earlier in the workflow. But the
coverage.xml
exists in the current working dir so there is no legitimate reason forcodecov-cli
to fail locating it, but that's exactly what happens.Here's the trace:
Here's the job log: https://github.com/aio-libs/multidict/actions/runs/7746607723/job/21125581164#step:8:59.
The text was updated successfully, but these errors were encountered: