Open4

VSCode の Remote Development の run test で go test -exec sudo したい

higebuhigebu

背景

  • 普段クラウド上の Linux サーバに対して SSH 接続して Remote Development している
  • 開発しているサービスの都合上、たまに -exec sudo したいときがある
higebuhigebu

結論(2024/05/15現在)

  • settings.jsongo.testEnvVars"GOFLAGS": "-exec=sudo" を設定する
    "go.testEnvVars": {
        "GOFLAGS": "-exec=sudo"
    }
higebuhigebu

やれそうでダメだった設定

  • go.testFlags-exec=sudo を追加
    • 本来これでやれて欲しい