9 lines
342 B
JSON
9 lines
342 B
JSON
{
|
|
"python.formatting.provider": "black",
|
|
// https://code.visualstudio.com/docs/python/testing#_pytest-configuration-settings
|
|
"python.testing.pytestEnabled": true,
|
|
// Added --no-cov to work around TypeError: message must be set
|
|
// https://github.com/microsoft/vscode-python/issues/14067
|
|
"python.testing.pytestArgs": ["--no-cov"]
|
|
}
|