Skip to content

Instantly share code, notes, and snippets.

@philippslang
Created July 6, 2018 10:28
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save philippslang/db542c5937a56a43b3b7fc13877df13b to your computer and use it in GitHub Desktop.
Save philippslang/db542c5937a56a43b3b7fc13877df13b to your computer and use it in GitHub Desktop.
VS Code pytest debugging settings
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: loadbalancer test",
"type": "python",
"request": "launch",
"module": "pytest",
"args": [
"--no-cov"
],
"pythonPath": "${workspaceFolder}/venv/bin",
"program": "${workspaceFolder}/tests/test_loadbalancer.py"
},
}
@philippslang
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment