Development: Add VS Code Devcontainer Configuration (#7041)

This commit is contained in:
phail
2024-06-28 00:13:55 +02:00
committed by GitHub
parent a64d457c30
commit fcc9847bc3
8 changed files with 589 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{
"python.testing.pytestArgs": [
"src"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"files.watcherExclude": {
"**/.venv/**": true,
"**/pytest_cache/**": true
}
}