mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
* Bunch of minor test fixes * Fix linter and multiproc * Remove missed os.environ * Rename and move stop_debugging * Add evaluate helper * Add exit_code property * Enable pytest and flake8 in workspace * Fix test failure * Set ptvsd python path in tests * Rename exit_code to expected_exit_code
22 lines
547 B
Text
22 lines
547 B
Text
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.envFile": "${workspaceFolder}/.env",
|
|
"python.formatting.provider": "black",
|
|
|
|
"files.exclude": {
|
|
"**/*.pyc": true,
|
|
"**/__pycache__": true,
|
|
".tox": true,
|
|
"src/ptvsd.egg-info": true,
|
|
},
|
|
"python.testing.pytestEnabled": true,
|
|
},
|
|
}
|