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
{{ message }}
This repository was archived by the owner on May 11, 2019. It is now read-only.
The self link (e.g. .vendor/src/github/com/org/proj -> ../../../../../) breaks code coverage profiles. At least when using ginkgo (but I don't really think plain go test is different). The .coverageprofile file produced contains file references of the form _/home/travis/gopath/src/github.com/org/proj/main.go which breaks the go cover tool.
Removing the link and adding /home/travis/gopath (in the above example) to the GOPATH makes it all work nicely. The go tool really doesn't like symlinks...
The self link (e.g. .vendor/src/github/com/org/proj -> ../../../../../) breaks code coverage profiles. At least when using ginkgo (but I don't really think plain
go testis different). The.coverageprofilefile produced contains file references of the form_/home/travis/gopath/src/github.com/org/proj/main.gowhich breaks the go cover tool.Removing the link and adding
/home/travis/gopath(in the above example) to the GOPATH makes it all work nicely. The go tool really doesn't like symlinks...