{
  "python.terminal.activateEnvInCurrentTerminal": false,
  // "python.defaultInterpreterPath": ".venv/bin/python",
  // Activate the venv at terminal-spawn time via PATH injection instead of
  // letting the Python extension inject `source .venv/bin/activate` after the
  // prompt appears (that deferred injection is the visible activation lag).
  "terminal.integrated.env.linux": {
    "VIRTUAL_ENV": "${workspaceFolder}/.venv",
    "PATH": "${workspaceFolder}/.venv/bin:${env:PATH}"
  },
  // "python.analysis.extraPaths": ["./src"],
  "files.autoSave": "afterDelay",
  "python.testing.pytestArgs": ["tests"],
  "python.testing.unittestEnabled": false,
  "python.testing.pytestEnabled": true
}
