Skip to content

Commit

Permalink
chore: update .gitignore and add pytest settings
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
l-lumin authored and gitbutler-client committed Dec 26, 2024
1 parent 75c33b6 commit 2b4317d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.vscode

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"python.testing.pytestArgs": [
"src"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}

0 comments on commit 2b4317d

Please sign in to comment.