Remove unnecessary .vscode directory from .gitignore and add pytest configuration to .vscode/settings.json to enable testing with pytest in the project. This improves the development workflow by ensuring that pytest is the default testing framework.
7 lines
No EOL
145 B
JSON
7 lines
No EOL
145 B
JSON
{
|
|
"python.testing.pytestArgs": [
|
|
"src"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true
|
|
} |