Skip to content

Commit f3154f6

Browse files
l-lumingitbutler-client
authored andcommitted
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.
1 parent 9a414d4 commit f3154f6

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
.vscode
2-
31
# Byte-compiled / optimized / DLL files
42
__pycache__/
53
*.py[cod]

.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
"src"
4+
],
5+
"python.testing.unittestEnabled": false,
6+
"python.testing.pytestEnabled": true
7+
}

0 commit comments

Comments
 (0)