This is the bit of the yml to push the report
$env:PATH = ‘C:\msys64\usr\bin;’ + $env:PATH
Invoke-WebRequest -Uri ‘https://codecov.io/bash’ -OutFile codecov.sh
bash codecov.sh -f “coverage.xml” -t -v
I appreciate any help as my build is broken right now
Thanks, you were right. Something changed on AppVeyor environment and broke my coverage
It took me some time, but actually is an OpenCover switch that needs to be -register:appveyor instead of -register:user.
After fixing that and getting a report (that is actually published), I’m still getting an exception on the CI, with no clear error message. Can you help me with that?