Skip to content

Instantly share code, notes, and snippets.

@pablogsal
Created April 28, 2020 02:50
Show Gist options
  • Save pablogsal/37ae2aea955f3b1beb7c32b86718600d to your computer and use it in GitHub Desktop.
Save pablogsal/37ae2aea955f3b1beb7c32b86718600d to your computer and use it in GitHub Desktop.
settings.json
{
"python.pythonPath": "${workspaceFolder}/python",
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": true,
"C_Cpp.default.intelliSenseMode": "gcc-x64",
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.cStandard": "c99",
"files.associations": {
"pycore_object.h": "c",
"pycore_pystate.h": "c",
"pycore_gil.h": "c",
"pycore_condvar.h": "c",
"osdefs.h": "c",
"marshal.h": "c",
"pythonrun.h": "c",
"errcode.h": "c",
"tokenizer.h": "c",
"token.h": "c"
},
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"restructuredtext.confPath": "${workspaceFolder}/Doc",
"python.formatting.provider": "black",
"python.testing.unittestArgs": [
"-v",
"-s",
"./Lib/test",
"-p",
"test_*.py"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment