vibe/.vscode/launch.json
Mathias Gesbert cf54a4733f v1.0.6
Co-authored-by: Quentin Torroba <quentin.torroba@mistral.ai>
Co-authored-by: vans <vans@gmail.com>
Co-authored-by: Xing Shi Cai <newptcai@tutanota.com>
Co-authored-by: yihong0618 <zouzou0208@gmail.com>
Co-authored-by: Torbjørn Bang <torbjorn@bang.dev>
2025-12-10 14:46:17 +01:00

71 lines
1.5 KiB
JSON

{
"version": "1.0.6",
"configurations": [
{
"name": "ACP Server",
"type": "debugpy",
"request": "launch",
"program": "vibe/acp/entrypoint.py",
"args": [
"--workdir",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Tests",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"args": [
"-v",
"-s"
],
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}"
}
},
{
"name": "Single Test",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"args": [
"-k",
"${input:test_identifier}",
"-vvv",
"-s",
"--no-header"
],
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"stopOnEntry": false,
"subProcess": true
},
{
"name": "CLI",
"type": "debugpy",
"request": "launch",
"program": "vibe/cli/entrypoint.py",
"args": [],
"console": "integratedTerminal",
"justMyCode": false
}
],
"inputs": [
{
"id": "test_identifier",
"description": "Enter the test identifier (file, class, or function)",
"default": "TestInitialization",
"type": "promptString"
}
]
}