v1.0.5
This commit is contained in:
parent
72bf84d8fa
commit
fc1817caa5
10 changed files with 42 additions and 16 deletions
20
.vscode/launch.json
vendored
20
.vscode/launch.json
vendored
|
|
@ -1,12 +1,15 @@
|
|||
{
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ACP Server",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "vibe/acp/entrypoint.py",
|
||||
"args": ["--workdir", "${workspaceFolder}"],
|
||||
"args": [
|
||||
"--workdir",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false
|
||||
},
|
||||
|
|
@ -15,7 +18,10 @@
|
|||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"module": "pytest",
|
||||
"args": ["-v", "-s"],
|
||||
"args": [
|
||||
"-v",
|
||||
"-s"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
|
|
@ -28,7 +34,13 @@
|
|||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"module": "pytest",
|
||||
"args": ["-k", "${input:test_identifier}", "-vvv", "-s", "--no-header"],
|
||||
"args": [
|
||||
"-k",
|
||||
"${input:test_identifier}",
|
||||
"-vvv",
|
||||
"-s",
|
||||
"--no-header"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue