go-mutesting
go-mutesting copied to clipboard
Problem with go get command
Everytime I try to run the command go get -t -v github.com/zimmski/go-mutesting/... I get the following error :
go get github.com/zimmski/go-mutesting/...: no matching versions for query "latest"
it looks like is something related to this issue, but I was not able to make it work. It looks like is something related to the ... at the end of the command. Any ideas? Thanks a lot!
@Guilhermeslucas are you by chance running in Module mode (i.e., GO111MODULE=on or outside of your GOPATH?)
It doesn't look like go-mutesting supports modules, yet.
@Guilhermeslucas Do you mind pasting the results of running go env as that may be helpful in diagnosing the issue.
I had the same problem. Unsetting GO111MODULE fixed the issue and I was able to pull.
https://github.com/zimmski/go-mutesting/pull/77 will solve testing for modules.