You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suspect codecov doesn't support the new coverage format so we will need to use go tool covdata textfmt to convert back to the format it understands (though thankfully the new binary format can auto-merge everything without needing the awk script I wrote for that purpose).
The text was updated successfully, but these errors were encountered:
With Go 1.20, we can now avoid using the whole
go test -c -cover
setup by simply building the regular binary with coverage profiling enabled, which should make all of our testing logic much simpler.I suspect codecov doesn't support the new coverage format so we will need to use
go tool covdata textfmt
to convert back to the format it understands (though thankfully the new binary format can auto-merge everything without needing the awk script I wrote for that purpose).The text was updated successfully, but these errors were encountered: