copyparty/.vscode/launch.json
2020-11-27 03:22:41 +01:00

34 lines
839 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run copyparty",
"type": "python",
"request": "launch",
"module": "copyparty",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [
//"-nw",
"-ed",
"-emp",
"-a",
"ed:wark",
"-v",
"srv::r:aed"
]
},
{
"name": "Run active unit test",
"type": "python",
"request": "launch",
"module": "unittest",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [
"-v",
"${file}"
]
},
]
}