unify coverage levels for different go versions #2
Labels
No Label
breakage/local
breakage/upstream
bug
duplicate
enhancement
help wanted
invalid
pertains/ci
pertains/go
pertains/nix
pertains/pre-commit
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Reference: wanderer/go-xkcdreader#2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
there is a rework[1] on the way that changes how
go test -cover
results are produced.it can already be observed in CI:
archlinux/go1.18.2
fedora36/go1.18
to transcribe what the images show:
go test -cover
on archlinux/go1.18.2 yields:go test -cover
on fedora36/go1.18 yields:the difference can probably be attributed to the changes already present in go1.18.2.
after applying a patch (also reffed here), the example test coverage appeared to have improved dramatically.
ref [1]: https://github.com/golang/go/issues/51430