vibe/.vscode/launch.json
Mathias Gesbert e9a9217cc8
v2.7.4 (#579)
Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai>
Co-authored-by: Kim-Adeline Miguel <kimadeline.miguel@mistral.ai>
Co-authored-by: Lucas Marandat <31749711+lucasmrdt@users.noreply.github.com>
Co-authored-by: Michel Thomazo <51709227+michelTho@users.noreply.github.com>
Co-authored-by: Paul Cacheux <paul.cacheux@mistral.ai>
Co-authored-by: Peter Evers <pevers90@gmail.com>
Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai>
Co-authored-by: Pierre Rossinès <pierre.rossines@protonmail.com>
Co-authored-by: Quentin <quentin.torroba@mistral.ai>
Co-authored-by: Simon Van de Kerckhove <simon.vandekerckhove@mistral.ai>
Co-authored-by: Val <102326092+vdeva@users.noreply.github.com>
Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com>
Co-authored-by: Mistral Vibe <vibe@mistral.ai>
2026-04-09 18:40:46 +02:00

85 lines
1.8 KiB
JSON

{
"version": "2.7.4",
"configurations": [
{
"name": "ACP Server",
"type": "debugpy",
"request": "launch",
"program": "vibe/acp/entrypoint.py",
"args": [],
"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
},
{
"name": "Attach using PID",
"type": "debugpy",
"request": "attach",
"processId": "${command:pickProcess}",
"justMyCode": true
},
{
"name": "Attach to Zed Process (Port)",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"justMyCode": true
}
],
"inputs": [
{
"id": "test_identifier",
"description": "Enter the test identifier (file, class, or function)",
"default": "TestInitialization",
"type": "promptString"
}
]
}