vibe/.vscode/launch.json
Mathias Gesbert 661588de0c v1.1.3
Co-Authored-By: Quentin Torroba <quentin.torroba@mistral.ai>
Co-Authored-By: Michel Thomazo <michel.thomazo@mistral.ai>
Co-Authored-By: Vincent Guilloux <vincent.guilloux@mistral.ai>
2025-12-12 17:56:32 +01:00

71 lines
1.5 KiB
JSON

{
"version": "1.1.3",
"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"
}
]
}