Skip to content

Commit

Permalink
Update vscode settings
Browse files Browse the repository at this point in the history
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 <joeyvagedes@microsoft.com>
  • Loading branch information
Javagedes committed Feb 22, 2023
1 parent 12acb07 commit b202e95
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b202e95

Please sign in to comment.