markitdown/.vscode/settings.json
lumin 2b4317dc9e chore: update .gitignore and add pytest settings
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.
2024-12-27 02:05:39 +09:00

7 lines
No EOL
145 B
JSON

{
"python.testing.pytestArgs": [
"src"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}