mirror of
https://github.com/mistralai/mistral-vibe
synced 2026-04-25 17:14:55 +02:00
Co-authored-by: Bastien <bastien.baret@gmail.com> Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai> Co-authored-by: Julien Legrand <72564015+JulienLGRD@users.noreply.github.com> Co-authored-by: Kim-Adeline Miguel <51720070+kimadeline@users.noreply.github.com> Co-authored-by: Mathias Gesbert <mathias.gesbert@mistral.ai> Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai> Co-authored-by: Quentin <quentin.torroba@mistral.ai> Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com> Co-authored-by: Mistral Vibe <vibe@mistral.ai>
86 lines
1.8 KiB
JSON
86 lines
1.8 KiB
JSON
{
|
|
"version": "2.7.5",
|
|
"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"
|
|
}
|
|
]
|
|
}
|