From e59f11f3790e6a49017fd2c55a2f96f3dbc727ee Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Thu, 22 Feb 2024 00:57:00 +0100 Subject: [PATCH] vscode: Configure unittest as test framework --- .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..8804daa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "python.testing.unittestArgs": [ + "-v", + "-s", + "./test", + "-p", + "*_test.py" + ], + "python.testing.pytestEnabled": false, + "python.testing.unittestEnabled": true +}