Browse Source

chore(tests): Increase pytest verbosity to 2 in debugger (#56990)

This increases the verbosity of pytest[1], when it's being run in the VSCode debugger, from 1 to 2, so that its output when a test fails shows the full difference between what was received and what was expected.

[1] https://docs.pytest.org/en/7.1.x/how-to/output.html#verbosity
Katie Byers 1 year ago
parent
commit
0a66ea8fd3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .vscode/launch.json

+ 1 - 1
.vscode/launch.json

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