Created
July 6, 2018 10:28
-
-
Save philippslang/db542c5937a56a43b3b7fc13877df13b to your computer and use it in GitHub Desktop.
VS Code pytest debugging settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
addresses microsoft/vscode-python#693