VSCode Go test禁用缓存

发布于 2023-04-15  87 次阅读


打开设置,输入Go,位置在Workspace-Extensions-Go,往下找到Go: Test Flags进行配置

设置为:

{
  "go.testFlags": [
      "-v", "-count=1"
  ],
  "go.alternateTools": {},

}