From 558c322565aec8e4943beff204914c211d7289e3 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 24 Feb 2024 23:18:23 +0000 Subject: [PATCH] changed testing method to pytest --- .vscode/settings.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ee4a680..8bb3b31 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,7 @@ { - "python.testing.unittestArgs": [ - "-v", - "-s", - "./tests", - "-p", - "*_test.py" + "python.testing.pytestArgs": [ + "test" ], - "python.testing.pytestEnabled": false, - "python.testing.unittestEnabled": true + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true }