From be3f837d05b3d0a772b8619c78ad58a8614216ce Mon Sep 17 00:00:00 2001 From: ajaysi Date: Tue, 23 Sep 2025 19:41:50 +0530 Subject: [PATCH] Update .gitignore with additional exclusions - Add .gitignore to ignore list - Add .pytest* patterns for pytest cache files - Improve gitignore coverage for Python development --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index c0fb5017..94339df1 100644 --- a/.gitignore +++ b/.gitignore @@ -11,12 +11,18 @@ __pycache__/ *.pyo *.pyd +.gitignore +.pytest* + # Cache files .cache/ */cache/ **/cache/ *.cache +venv_new +venv + # Environment files .env .env.local