From 3270173fd949734794dcd67989d528d4c4d4c7d2 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Tue, 11 Nov 2025 14:22:00 +0100 Subject: [PATCH] chore: add VSCode settings for pytest configuration --- .vscode/settings.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9b38853 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file