mirror of
https://github.com/mistralai/mistral-vibe
synced 2026-04-26 01:24:55 +02:00
Co-Authored-By: Quentin Torroba <quentin.torroba@mistral.ai> Co-Authored-By: Michel Thomazo <michel.thomazo@mistral.ai> Co-Authored-By: Kracekumar <kracethekingmaker@gmail.com>
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"version": "1.2.0",
|
|
"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
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
"id": "test_identifier",
|
|
"description": "Enter the test identifier (file, class, or function)",
|
|
"default": "TestInitialization",
|
|
"type": "promptString"
|
|
}
|
|
]
|
|
}
|