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
Go 1.20 supports collecting code coverage profiles for programs (applications and integration tests), as opposed to just unit tests.
To collect coverage data for a program, build it with go build's -cover flag, then run the resulting binary with the environment variable GOCOVERDIR set to an output directory for coverage profiles.
The text was updated successfully, but these errors were encountered:
Ref: https://go.dev/doc/go1.20
The text was updated successfully, but these errors were encountered: