Update .gitignore for venv and test artifacts

Added rules to ignore virtual environment directories (venv, .venv) and test artifact files (*.test, *.tmp) to prevent them from being tracked in the repository.
This commit is contained in:
Your Name
2025-08-16 15:03:00 +03:00
parent 7e586c07f5
commit 227e543ad9
+8
View File
@@ -24,3 +24,11 @@ dist/
# yt-dlp temporary/partial files
*.part
*.ytdl
# Virtual environments
venv/
.venv/
# Test artifacts
*.test
*.tmp