From b202e95fe9d8522d97867b441a4074e3d14812b2 Mon Sep 17 00:00:00 2001 From: Azure Devops Date: Tue, 21 Feb 2023 14:52:25 -0800 Subject: [PATCH] Update vscode settings Updates vscode settings for detecting and running tests to use pytest rather then unittest to match both current documentation and github action for CI testing. Signed-off-by: Joey Vagedes --- .vscode/settings.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6fcc9004..674d2b30 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,13 +1,9 @@ { "python.testing.unittestArgs": [ - "-v", - "-s", - "${workspaceRoot}/edk2toolext/tests", - "-p", - "test_*.py" + "edk2toolext/tests" ], - "python.testing.pytestEnabled": false, - "python.testing.unittestEnabled": true, + "python.testing.pytestEnabled": true, + "python.testing.unittestEnabled": false, "python.linting.flake8Enabled": true, "python.linting.enabled": true, "python.linting.pydocstyleEnabled": true