From 686e38bd2137b3a7da4ab132138472e81c411de2 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:37:29 +0100 Subject: [PATCH] vscode/settings: set -v flag for Go tests Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index eab270177d..10a7a917f0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,6 +11,7 @@ "--fast", ], "go.testFlags": [ - "-race" + "-race", + "-v", ], }