Files
NetAlertX/.vscode/settings.json
Adam Outler c81a054d89 Coderabit
2025-10-03 00:08:26 +00:00

20 lines
688 B
JSON
Executable File

{
"terminal.integrated.suggest.enabled": true,
// Use pytest and look under the test/ folder
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": [
"test"
],
// Ensure VS Code uses the devcontainer virtualenv
"python.defaultInterpreterPath": "/opt/venv/bin/python",
// Let the Python extension invoke pytest via the interpreter; avoid hardcoded paths
// Removed python.testing.pytestPath and legacy pytest.command overrides
"terminal.integrated.defaultProfile.linux": null,
"terminal.integrated.profiles.linux": {
"ash": {
"path": "/bin/fish"
}
}
}