Skip to content

Commit

Permalink
Change VS Code pytest args to be more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmaxwell committed Oct 23, 2024
1 parent b60c8d7 commit a8d0dc1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"python.testing.pytestArgs": ["tests", "-v"],
"python.testing.pytestArgs": [
"tests",
"-vv"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.exclude": ["**/build/**", "**/.tox/**", "**/.venv/**"]
"python.analysis.exclude": [
"**/build/**",
"**/.tox/**",
"**/.venv/**"
]
}

0 comments on commit a8d0dc1

Please sign in to comment.