Add a VSCode test configuration for cargo test --all.
This commit is contained in:
parent
fddc57d548
commit
dc6a7a4128
1 changed files with 9 additions and 1 deletions
10
.vscode/settings.json
vendored
10
.vscode/settings.json
vendored
|
@ -15,5 +15,13 @@
|
||||||
".sw*": true,
|
".sw*": true,
|
||||||
"target": true, // Top-level build output.
|
"target": true, // Top-level build output.
|
||||||
"*/target": true // Sub-crate build output.
|
"*/target": true // Sub-crate build output.
|
||||||
}
|
},
|
||||||
|
"rust.customTestConfigurations": [
|
||||||
|
{
|
||||||
|
"title": "All Crates",
|
||||||
|
"args": [
|
||||||
|
"--all"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue