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.
This commit is contained in:
lumin 2024-12-26 23:10:02 +09:00 committed by GitButler
parent 75c33b6713
commit 2b4317dc9e
2 changed files with 7 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,5 +1,3 @@
.vscode
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

7
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,7 @@
{
"python.testing.pytestArgs": [
"src"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}