Created
September 2, 2019 11:48
-
-
Save felipem775/af268665cdb0440be82a948770c3ceaf to your computer and use it in GitHub Desktop.
Settings para que VSCode muestre los test de python con la posibilidad de ejecutar en debug
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
{ | |
"python.pythonPath": "env/bin/python", | |
"pythonTestExplorer.testFramework": "unittest", | |
"python.testing.unittestArgs": [ | |
"-v", | |
"-s", | |
"./tests", | |
"-p", | |
"test_*.py" | |
], | |
"python.testing.pytestEnabled": false, | |
"python.testing.nosetestsEnabled": false, | |
"python.testing.unittestEnabled": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment