[Python] Improve documentation for "request": "test"
and "console": "integratedTerminal"
#3742
Labels
"request": "test"
and "console": "integratedTerminal"
#3742
Based on microsoft/vscode-python#12085, there is some unclarity regarding the
launch.json
options"request": "test"
and"console": "integratedTerminal"
in the Python documentation:The Python > Testing documentation [1] mentions that it's possible to add a launch configuration with
"request": "test"
tolaunch.json
to configure the running and debugging of tests, but it doesn't explain what settings are possible or what they do. Specifically, it is not clear that"console": "integratedTerminal"
changes the default behaviour to run and debug tests in the integrated terminal.The Python > Debugging documentation [2] does list the different options for the
"console"
setting inlaunch.json
, but does not mention the possibility to configure the built-in debugger with"request": "test"
(even though this is the debugging page).[1] https://code.visualstudio.com/docs/python/testing#_debug-tests
[2] https://code.visualstudio.com/docs/python/debugging#_console
The text was updated successfully, but these errors were encountered: