Browse Source

chore(vscode): Turn on --reuse-db flag for vscode debugger (#80138)

turns on the --reuse-db flag for vscode python debugger by default
Michael Sun 4 months ago
parent
commit
0df295aced
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .vscode/launch.json

+ 1 - 1
.vscode/launch.json

@@ -59,7 +59,7 @@
       "type": "python",
       "request": "launch",
       "module": "pytest",
-      "args": ["--verbosity", "2", "${file}"],
+      "args": ["--verbosity", "2", "${file}", "--reuse-db"],
       "django": true,
       "env": {
         "SENTRY_MODEL_MANIFEST_FILE_PATH": "./model-manifest.json"