Setup vscode launch.json and configure pytests for dev container

This commit is contained in:
Debanjum
2025-06-01 15:56:39 -07:00
parent a98525be01
commit 257bdfadef
2 changed files with 81 additions and 4 deletions

View File

@@ -35,11 +35,16 @@
"--profile",
"black",
"--filter-files"
]
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}
}
},
"postCreateCommand": "scripts/dev_setup.sh",
"postCreateCommand": "scripts/dev_setup.sh --devcontainer",
"features": {
"ghcr.io/devcontainers-contrib/features/black:2": {},
"ghcr.io/devcontainers-contrib/features/mypy:2": {},