mirror of
https://github.com/langchain-ai/markdown-exec.git
synced 2026-07-01 18:25:52 -04:00
36 lines
891 B
JSON
36 lines
891 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "python (current file)",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "test",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "pytest",
|
|
"justMyCode": false,
|
|
"args": [
|
|
"-c=config/pytest.ini",
|
|
"-vvv",
|
|
"--no-cov",
|
|
"--dist=no",
|
|
"tests",
|
|
"-k=${input:tests_selection}"
|
|
]
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
"id": "tests_selection",
|
|
"type": "promptString",
|
|
"description": "Tests selection",
|
|
"default": ""
|
|
}
|
|
]
|
|
} |