For example, my test file in the vm/runtime/ package, but I want to get the branch coverage of /vm/... package using the following command:
go test -cover -coverpkg ../../vm/... -toolexec 'gobco-tool'
it cause the trackback
/tmp/go-build132769910/b052/analysis.cover.go:3:8: can't find import: "github.com/junhwi/gobco"
gobco: exit status 2
FAIL github.com/ethereum/go-ethereum/core/vm/runtime [build failed]
Hello,
For example, my test file in the vm/runtime/ package, but I want to get the branch coverage of /vm/... package using the following command:
go test -cover -coverpkg ../../vm/... -toolexec 'gobco-tool'
it cause the trackback /tmp/go-build132769910/b052/analysis.cover.go:3:8: can't find import: "github.com/junhwi/gobco" gobco: exit status 2 FAIL github.com/ethereum/go-ethereum/core/vm/runtime [build failed]
How can I solve the problem? Thanks in advance