douling0053 2019-02-17 05:56
浏览 66
已采纳

模块不会在golang测试/构建过程中进行缓存/保存。 您如何解决这个问题?

In one of my projects, using go modules. It has started to continually do a search for a module every single time I do anything. I include lots of modules, but only one does this (see below). How do I work around this?

> go test -run TestUodate
go: finding github.com/mohae/deepcopy latest
PASS
ok    example.com/example/stuff   0.698s
  • 写回答

1条回答 默认 最新

  • dongyin8991 2019-07-29 19:31
    关注

    This symptom looks like the one in https://golang.org/issue/29773, which is fixed at head (but not in go1.13beta1 or earlier releases). Try it using a go command built from head, which you can obtain easily using the gotip tool.

    If you're still seeing this using gotip, please open an issue by filling out the template at https://golang.org/issue/new.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?