copyparty/.vscode/launch.json

36 lines
895 B
JSON

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