From 36793e50c76db6f487c27c7cb3a7a9e3cfe59809 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sat, 12 Oct 2024 15:54:34 +0100 Subject: [PATCH] Configure VSCode to run tests in its UI --- .vscode/settings.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index c6f3aa49..225a8d1e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,10 @@ }, "editor.defaultFormatter": "charliermarsh.ruff", "editor.formatOnSave": true - } + }, + "python.testing.pytestArgs": [ + "." + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true }