Skip to content

Instantly share code, notes, and snippets.

@felipem775
Created September 2, 2019 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipem775/af268665cdb0440be82a948770c3ceaf to your computer and use it in GitHub Desktop.
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
{
"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