From b7b497d10e0b6a0499a13db543201241ce3c632c Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Tue, 27 May 2025 06:29:55 +0000 Subject: [PATCH] MAINT: 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 00000000..a70ddf95 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "." + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +}