0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Go×vscodeを使用してtestingを実行する際の環境変数を設定する

Last updated at Posted at 2023-09-15

初めに

Go×vscodeを使用してtestingを実行する場合に下図のような「run test」などが表示される。
スクリーンショット 2023-09-15 12.34.45.png

その際に環境変数する必要があったので方法を記載する。

やってみる

まず任意のディレクトリにenvファイルを作成する

% touch .env

envファイルに任意の変数を定義する。

.env
ENV=local

vscodeの設定ファイルを開く。
macの場合はcommand + ,で設定ファイルを開く

go configurationで検索してsetting.jsonを編集する
スクリーンショット 2023-09-15 12.42.43.png

go.testEnvFileに作成した.envファイルのパスを記載する。

setting.json
{
    "workbench.colorTheme": "Default Dark+",
    "editor.inlineSuggest.enabled": true,
    "go.testEnvFile": "/Users/省略/.env",

これでtestingを実行する際に設定した環境変数を読み込むことができる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?