From dc6a7a41281f05336021fbad474c4fd11c2e3e10 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Mon, 13 Mar 2017 00:39:25 -0700 Subject: [PATCH] Add a VSCode test configuration for cargo test --all. --- .vscode/settings.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f682222e..d5ac30e0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,5 +15,13 @@ ".sw*": true, "target": true, // Top-level build output. "*/target": true // Sub-crate build output. - } + }, + "rust.customTestConfigurations": [ + { + "title": "All Crates", + "args": [ + "--all" + ] + } + ] } \ No newline at end of file