Copy default vscode settings during bootstrap (#43180)

This commit is contained in:
Martin Hjelmare
2020-11-13 16:03:40 +01:00
committed by GitHub
parent 37361a6332
commit 6daf40b254
4 changed files with 17 additions and 4 deletions

View File

@ -1,8 +1,9 @@
{
// Please keep this file in sync with settings in home-assistant/.devcontainer/devcontainer.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"]
"python.testing.pytestArgs": ["--no-cov"],
// https://code.visualstudio.com/docs/python/testing#_pytest-configuration-settings
"python.testing.pytestEnabled": true
}