debugpy/ptvsd.code-workspace
Karthik Nadig 2a367b2f4b
Bunch of minor test fixes (#1726)
* 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
2019-08-29 00:19:50 -07:00

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,
},
}