{ "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" ], // NetAlertX devcontainer uses /opt/venv; this ensures pip/pytest are available for discovery. "python.defaultInterpreterPath": "/opt/venv/bin/python", "python.testing.cwd": "${workspaceFolder}", "python.testing.autoTestDiscoverOnSaveEnabled": true, // 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": "zsh", "terminal.integrated.profiles.linux": { "zsh": { "path": "/bin/zsh" } }, // Fallback for older VS Code versions or schema validators that don't accept custom profiles "terminal.integrated.shell.linux": "/usr/bin/zsh" , "python.linting.flake8Enabled": true, "python.linting.enabled": true, "python.linting.flake8Args": [ "--config=.flake8" ], "python.formatting.provider": "black", "python.formatting.blackArgs": [ "--line-length=180" ], "chat.useAgentSkills": true, }