diff options
author | Clément Bénier <clement.benier@iot.bzh> | 2018-08-21 18:58:26 +0200 |
---|---|---|
committer | Clément Bénier <clement.benier@iot.bzh> | 2018-08-21 18:58:32 +0200 |
commit | c095e1ea9a9e38f020ce4ae852d97c712be910b6 (patch) | |
tree | ce085c43116ceb9eda10fd79cfc3d18ecfe6387a /.vscode | |
parent | 3c40079d8360c15f0ce52a6c11a2bc2555177463 (diff) | |
parent | 2fb2226b666e7a8a21dc8b852188b75c06e2cfc8 (diff) |
Merge remote-tracking branch 'origin/sandbox/benierc/test'
Change-Id: Idc200f10e217119df9edfebbaf839c5fd45b19a4
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 12 | ||||
-rw-r--r-- | .vscode/settings.json | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 7c3d99c..c12c80c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,18 @@ "showLog": false }, { + "name": "XDS-Server-Test", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceRoot}/test", + "env": { + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", + }, + "args": ["-test.v", "-test.run", ".*"], + "showLog": false + }, + { "name": "XDS-Server local dev", "type": "go", "request": "launch", diff --git a/.vscode/settings.json b/.vscode/settings.json index c556d7f..45cbe81 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -21,7 +21,8 @@ "bin": true, "tools": true, "webapp/dist": true, - "webapp/node_modules": true + "webapp/node_modules": true, + "**/*~": true }, // Specify paths/files to ignore. (Supports Globs) "cSpell.ignorePaths": [ |