From a8d0dc1672e440db87560ffbb09e480bcd2ca9aa Mon Sep 17 00:00:00 2001 From: Stuart Maxwell Date: Wed, 23 Oct 2024 17:27:48 +1300 Subject: [PATCH] Change VS Code pytest args to be more verbose --- .vscode/settings.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 1f82ccc..ebe839e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,13 @@ { - "python.testing.pytestArgs": ["tests", "-v"], + "python.testing.pytestArgs": [ + "tests", + "-vv" + ], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, - "python.analysis.exclude": ["**/build/**", "**/.tox/**", "**/.venv/**"] + "python.analysis.exclude": [ + "**/build/**", + "**/.tox/**", + "**/.venv/**" + ] }