vscode: no-debug launcher

This commit is contained in:
ed 2021-02-12 19:25:01 +01:00
parent 56a26b0916
commit d8bcb44e44
2 changed files with 12 additions and 0 deletions

7
.vscode/launch.json vendored
View file

@ -20,6 +20,13 @@
"srv::r:aed:cnodupe" "srv::r:aed:cnodupe"
] ]
}, },
{
"name": "No debug",
"preLaunchTask": "no_dbg",
"type": "python",
//"request": "attach", "port": 42069
// fork: nc -l 42069 </dev/null
},
{ {
"name": "Run active unit test", "name": "Run active unit test",
"type": "python", "type": "python",

5
.vscode/tasks.json vendored
View file

@ -5,6 +5,11 @@
"label": "pre", "label": "pre",
"command": "true;rm -rf inc/* inc/.hist/;mkdir -p inc;", "command": "true;rm -rf inc/* inc/.hist/;mkdir -p inc;",
"type": "shell" "type": "shell"
},
{
"label": "no_dbg",
"command": "${config:python.pythonPath} -m copyparty -ed -emp -e2d -e2s -a ed:wark -v srv::r:aed:cnodupe &&false",
"type": "shell"
} }
] ]
} }