From c505f2966d9a5cae37b2b07987df5b7124df8451 Mon Sep 17 00:00:00 2001 From: ANkREYNONt JAILBREAkEr Date: Sun, 26 Jan 2025 17:43:13 +0000 Subject: [PATCH] Configures VS Code Python unit test settings Enables unittest framework integration in VS Code Disables pytest to avoid conflicting test runners Sets up test discovery pattern to match *test.py files --- .vscode/settings.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..65d939f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "python.testing.unittestArgs": [ + "-v", + "-s", + ".", + "-p", + "*test.py" + ], + "python.testing.pytestEnabled": false, + "python.testing.unittestEnabled": true +} \ No newline at end of file