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:
parent
75c33b6713
commit
2b4317dc9e
2 changed files with 7 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,5 +1,3 @@
|
|||
.vscode
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
|
|
|||
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"python.testing.pytestArgs": [
|
||||
"src"
|
||||
],
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestEnabled": true
|
||||
}
|
||||
Loading…
Reference in a new issue